summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2004-11-10 15:15:43 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2004-11-10 15:15:43 +0000
commitd0db69919bbb513ab0eaebb2aca7209fb0e8d394 (patch)
treecd017554a802de2ea0129f0271e1dec7c33dd4d0 /lisp/emacs-lisp
parente9146d5accb44e7c00a350a95492b3db6f1ee980 (diff)
downloademacs-d0db69919bbb513ab0eaebb2aca7209fb0e8d394.tar.gz
emacs-d0db69919bbb513ab0eaebb2aca7209fb0e8d394.tar.bz2
emacs-d0db69919bbb513ab0eaebb2aca7209fb0e8d394.zip
(easy-menu-define-key): Understand the case where the keymap is a symbol.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/easymenu.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el
index f42f326ba0a..730236989a4 100644
--- a/lisp/emacs-lisp/easymenu.el
+++ b/lisp/emacs-lisp/easymenu.el
@@ -378,6 +378,7 @@ otherwise put the new binding last in MENU.
BEFORE can be either a string (menu item name) or a symbol
\(the fake function key for the menu item).
KEY does not have to be a symbol, and comparison is done with equal."
+ (if (symbolp menu) (setq menu (indirect-function menu)))
(let ((inserted (null item)) ; Fake already inserted.
tail done)
(while (not done)