From 445673b0be9f50bf985f161dc218b2d211ac9629 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 30 Mar 2019 13:57:23 -0400 Subject: [PATCH] Remove reference to old variable in do-repeat! --- modules/config/default/+evil-bindings.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 6aeb32a86..ac1617fd7 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -776,9 +776,8 @@ whose CDR is for repeating backward. They should both be kbd-able strings.") (when +default-repeat-keys (defmacro do-repeat! (command next-func prev-func) - "Makes ; and , the universal repeat-keys in evil-mode. These keys can be -customized by changing `+default-repeat-forward-key' and -`+default-repeat-backward-key'." + "Makes ; and , the universal repeat-keys in evil-mode. +To change these keys see `+default-repeat-keys'." (let ((fn-sym (intern (format "+default*repeat-%s" (doom-unquote command))))) `(progn (defun ,fn-sym (&rest _)