]> git.eshelyaron.com Git - emacs.git/commitdiff
Prefer defvar-keymap to easy-mmode-defmap
authorStefan Kangas <stefan@marxist.se>
Thu, 13 Jan 2022 22:16:16 +0000 (23:16 +0100)
committerStefan Kangas <stefan@marxist.se>
Thu, 13 Jan 2022 22:24:25 +0000 (23:24 +0100)
* lisp/progmodes/gud.el (gud-minibuffer-local-map):
* lisp/vc/pcvs-info.el (cvs-status-map): Use defvar-keymap.

* lisp/emacs-lisp/easy-mmode.el (easy-mmode-defmap): Document as
deprecated.

lisp/emacs-lisp/easy-mmode.el
lisp/progmodes/gud.el
lisp/vc/pcvs-info.el

index cf3ea8c3ddff559d40a2cfe7af1262f2e66f396e..688c76e0c547d3b2dba97577379c5a2ff97ef95a 100644 (file)
@@ -696,7 +696,11 @@ Valid keywords and arguments are:
 (defmacro easy-mmode-defmap (m bs doc &rest args)
   "Define a constant M whose value is the result of `easy-mmode-define-keymap'.
 The M, BS, and ARGS arguments are as per that function.  DOC is
-the constant's documentation."
+the constant's documentation.
+
+This macro is deprecated; use `defvar-keymap' instead."
+  ;; FIXME: Declare obsolete in favor of `defvar-keymap'.  It is still
+  ;; used for `gud-menu-map' and `gud-minor-mode-map', so fix that first.
   (declare (doc-string 3) (indent 1))
   `(defconst ,m
      (easy-mmode-define-keymap ,bs nil (if (boundp ',m) ,m) ,(cons 'list args))
index b1bef82842d3447fb54090985317e30bcb4ed354..3f78c9eb15b4628b304e15a68a2e5b835c91a241 100644 (file)
@@ -744,10 +744,10 @@ The option \"--fullname\" must be included in this value."
 
     output))
 
-(easy-mmode-defmap gud-minibuffer-local-map
-  '(("\C-i" . comint-dynamic-complete-filename))
-  "Keymap for minibuffer prompting of gud startup command."
-  :inherit minibuffer-local-map)
+(defvar-keymap gud-minibuffer-local-map
+  :doc "Keymap for minibuffer prompting of gud startup command."
+  :parent minibuffer-local-map
+  "C-i" #'comint-dynamic-complete-filename)
 
 (defun gud-query-cmdline (minor-mode &optional init)
   (let* ((hist-sym (gud-symbol 'history nil minor-mode))
index 11d14f957660b014696f88e0fcad33ae57503e59..141854a6362f1da8a38a988e09118e39f172b624 100644 (file)
@@ -130,9 +130,9 @@ to confuse some users sometimes."
 (defvar cvs-bakprefix ".#"
   "The prefix that CVS prepends to files when rcsmerge'ing.")
 
-(easy-mmode-defmap cvs-status-map
-  '(([(mouse-2)] . cvs-mode-toggle-mark))
-  "Local keymap for text properties of status.")
+(defvar-keymap cvs-status-map
+  :doc "Local keymap for text properties of status."
+  "<mouse-2>" #'cvs-mode-toggle-mark)
 
 ;; Constructor: