emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/bind-map 7de08fe592 43/97: Move a defvar and reword docstr


From: ELPA Syncer
Subject: [nongnu] elpa/bind-map 7de08fe592 43/97: Move a defvar and reword docstring
Date: Thu, 20 Jan 2022 07:59:18 -0500 (EST)

branch: elpa/bind-map
commit 7de08fe592b7a62cd8ac55f9edc31e1ff71e7f1e
Author: justbur <justin@burkett.cc>
Commit: justbur <justin@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)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]