Remove reference to old variable in do-repeat!

This commit is contained in:
Henrik Lissner 2019-03-30 13:57:23 -04:00
parent 848399fec1
commit 445673b0be
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -776,9 +776,8 @@ whose CDR is for repeating backward. They should both be kbd-able strings.")
(when +default-repeat-keys (when +default-repeat-keys
(defmacro do-repeat! (command next-func prev-func) (defmacro do-repeat! (command next-func prev-func)
"Makes ; and , the universal repeat-keys in evil-mode. These keys can be "Makes ; and , the universal repeat-keys in evil-mode.
customized by changing `+default-repeat-forward-key' and To change these keys see `+default-repeat-keys'."
`+default-repeat-backward-key'."
(let ((fn-sym (intern (format "+default*repeat-%s" (doom-unquote command))))) (let ((fn-sym (intern (format "+default*repeat-%s" (doom-unquote command)))))
`(progn `(progn
(defun ,fn-sym (&rest _) (defun ,fn-sym (&rest _)