]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor clarification of define-minor-mode :keymap argument
authorStefan Kangas <stefan@marxist.se>
Sat, 25 Sep 2021 15:54:49 +0000 (17:54 +0200)
committerStefan Kangas <stefan@marxist.se>
Sat, 25 Sep 2021 15:54:49 +0000 (17:54 +0200)
* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Minor doc fix;
clarify by saying that ":keymap" should be an "unquoted variable
name".  (Bug#25505)

lisp/emacs-lisp/easy-mmode.el

index dfbae746cc1df6a2f2ab964b21e4cbe16280f760..0e4d6eeb7bb4406e4150c7d440a93c7bf82a0fe2 100644 (file)
@@ -163,8 +163,8 @@ BODY contains code to execute each time the mode is enabled or disabled.
                Not used if you also specify :variable.
 :lighter SPEC  Text displayed in the mode line when the mode is on.
 :keymap MAP    Keymap bound to the mode keymap.  Defaults to `MODE-map'.
-               If non-nil, it should be a variable name (whose value is
-               a keymap), or an expression that returns either a keymap or
+                If non-nil, it should be an unquoted variable name (whose value
+                is a keymap), or an expression that returns either a keymap or
                a list of (KEY . BINDING) pairs where KEY and BINDING are
                suitable for `define-key'.  If you supply a KEYMAP argument
                that is not a symbol, this macro defines the variable MODE-map