diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-11-10 15:15:43 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-11-10 15:15:43 +0000 |
commit | d0db69919bbb513ab0eaebb2aca7209fb0e8d394 (patch) | |
tree | cd017554a802de2ea0129f0271e1dec7c33dd4d0 /lisp/emacs-lisp | |
parent | e9146d5accb44e7c00a350a95492b3db6f1ee980 (diff) | |
download | emacs-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.el | 1 |
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) |