From 165958d2b4194b75afd0d57b8095cdc036e7ee7b Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 12 Nov 2000 18:09:09 +0000 Subject: [PATCH] (easy-mmode-define-keymap): Add keyword arg :name. --- lisp/emacs-lisp/easy-mmode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.39.5