branch: elpa/bind-map commit 7de08fe592b7a62cd8ac55f9edc31e1ff71e7f1e Author: justbur <jus...@burkett.cc> Commit: justbur <jus...@burkett.cc>
Move a defvar and reword docstring --- bind-map.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bind-map.el b/bind-map.el index f27a173f7c..00afef3639 100644 --- a/bind-map.el +++ b/bind-map.el @@ -116,6 +116,10 @@ `bind-map-for-minor-mode'." :group 'bind-map) +(defvar bind-map-local-bindings '() + "Each element of this list takes the form (STATE KEY DEF) and +corresponds to a binding for an evil local state map.") + ;;;###autoload (defmacro bind-map (map &rest args) "Bind keymap MAP in multiple locations. @@ -282,10 +286,6 @@ concatenated with `bind-map-default-map-suffix'." ',map-name))) (put 'bind-map-for-minor-mode 'lisp-indent-function 'defun) -(defvar bind-map-local-bindings '() - "Elements are (STATE KEY DEF) each corresponding to a binding -to place in a local state map.") - (defun bind-map-local-mode-hook () (dolist (entry bind-map-local-bindings) (let ((map (intern (format "evil-%s-state-local-map" (car entry)))))