From: Stefan Monnier Date: Sun, 12 Nov 2000 18:09:09 +0000 (+0000) Subject: (easy-mmode-define-keymap): X-Git-Tag: emacs-pretest-21.0.90~108 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=165958d2b4194b75afd0d57b8095cdc036e7ee7b;p=emacs.git (easy-mmode-define-keymap): Add keyword arg :name. --- diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index e3c82e445de..2dde3559088 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -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)