summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-02-26 17:19:49 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-02-26 17:27:38 -0700
commit299fe00221238ba2a15a82a2d6b7b271af5224fd (patch)
treec1e81c22aaacc4aab577a9c0959f9a6b0e57aeba
parentddbe44133618724d6326b56026d92cea176c394e (diff)
downloaddotfiles-299fe00221238ba2a15a82a2d6b7b271af5224fd.tar.gz
transient-cycles: fix typo in name of window parameter
-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))