]> git.eshelyaron.com Git - emacs.git/commitdiff
(easy-mmode-define-keymap):
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 12 Nov 2000 18:09:09 +0000 (18:09 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 12 Nov 2000 18:09:09 +0000 (18:09 +0000)
Add keyword arg :name.

lisp/emacs-lisp/easy-mmode.el

index e3c82e445de0c02a27713687bdbacdc5dc61234c..2dde3559088580826c69471e67b63b9e313cb72e 100644 (file)
@@ -315,12 +315,13 @@ BS must be a list of (KEY . BINDING) where
 KEY and BINDINGS are suitable for `define-key'.
 Optional NAME is passed to `make-sparse-keymap'.
 Optional map M can be used to modify an existing map.
-ARGS is a list of additional arguments."
+ARGS is a list of additional keyword arguments."
   (let (inherit dense suppress)
     (while args
       (let ((key (pop args))
            (val (pop args)))
        (case key
+        (:name (setq name val))
         (:dense (setq dense val))
         (:inherit (setq inherit val))
         (:group)