summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/site-lisp/transient-cycles.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/site-lisp/transient-cycles.el b/.emacs.d/site-lisp/transient-cycles.el
index e8580fb7..efa058dc 100644
--- a/.emacs.d/site-lisp/transient-cycles.el
+++ b/.emacs.d/site-lisp/transient-cycles.el
@@ -451,7 +451,7 @@ take you back there."
#'transient-cycles--reset-window-recent-buffer)))
(cl-symbol-macrolet
- ((param (window-parameter nil 'transient-cycles--window-recent-bufer)))
+ ((param (window-parameter nil 'transient-cycles--window-recent-buffer)))
(transient-cycles-define-commands (recent-buffer last-recent-buffer)
(([remap previous-buffer] (count)
(interactive "p")
@@ -495,7 +495,7 @@ take you back there."
:cycle-backwards-key transient-cycles-window-buffers-cycle-backwards-key))
(defun transient-cycles--reset-window-recent-buffer (&rest _ignore)
- (set-window-parameter nil 'transient-cycles--window-recent-bufer nil))
+ (set-window-parameter nil 'transient-cycles--window-recent-buffer nil))
(defun transient-cycles-window-buffers-back-and-forth ()
"Switch to the buffer most recently accessed using the bindings
@@ -504,7 +504,7 @@ condition that no other commands have set this window's buffer
since then. Otherwise, call `previous-buffer'."
(interactive)
(cl-symbol-macrolet
- ((param (window-parameter nil 'transient-cycles--window-recent-bufer)))
+ ((param (window-parameter nil 'transient-cycles--window-recent-buffer)))
(cond (param
(let ((new (and (window-next-buffers) (* -1 param))))
(cond ((cl-plusp param) (next-buffer param))