diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-05-17 19:34:18 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-05-17 19:34:18 +0000 |
commit | 0579e89d9823bf8a11ce3fffe693ac02a0840c8e (patch) | |
tree | 3069a3240c2a94939fd61a082a5e36f33bdee51a /lisp/emacs-lisp/easymenu.el | |
parent | a53c766630d99e340eb072c50288932126c09c3e (diff) | |
download | emacs-0579e89d9823bf8a11ce3fffe693ac02a0840c8e.tar.gz |
(easy-menu-create-keymaps): Set menu-enable prop.
Diffstat (limited to 'lisp/emacs-lisp/easymenu.el')
-rw-r--r-- | lisp/emacs-lisp/easymenu.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index 6ce754cd35f..9360f778cfc 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el @@ -164,7 +164,8 @@ is a list of menu items, as above." selected ;; Simulate radio buttons with menu-enable. (put command 'menu-enable - (list 'not selected))))))) + (list 'not selected))))) + (put command 'menu-enable keyword))) (if (keymapp callback) (setq name (concat name " ..."))) (if (symbolp callback) |