diff options
| -rw-r--r-- | lisp/emacs-lisp/easymenu.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index a8a50db923e..0b02508c2c9 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el | |||
| @@ -479,8 +479,9 @@ NAME should be a string, the name of the element to be removed." | |||
| 479 | ;; Return a sparse keymap in which to add or remove an item. | 479 | ;; Return a sparse keymap in which to add or remove an item. |
| 480 | ;; MAP and PATH are as defined in `easy-menu-add-item'. | 480 | ;; MAP and PATH are as defined in `easy-menu-add-item'. |
| 481 | (if (null map) | 481 | (if (null map) |
| 482 | (let ((local (lookup-key (current-local-map) | 482 | (let ((local (and (current-local-map) |
| 483 | (vconcat '(menu-bar) (mapcar 'intern path)))) | 483 | (lookup-key (current-local-map) |
| 484 | (vconcat '(menu-bar) (mapcar 'intern path))))) | ||
| 484 | (global (lookup-key global-map | 485 | (global (lookup-key global-map |
| 485 | (vconcat '(menu-bar) (mapcar 'intern path))))) | 486 | (vconcat '(menu-bar) (mapcar 'intern path))))) |
| 486 | (if (and local (not (integerp local))) | 487 | (if (and local (not (integerp local))) |