summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-10-08 15:13:43 +0000
committerDave Love <fx@gnu.org>2000-10-08 15:13:43 +0000
commitfbfb705c15947f32b127e8eccc6a233d8ee300ed (patch)
tree392375738a4009f048188cd2fc913fa2cf96a837
parent4e953aff359978a749401bac06d83de5909d99e9 (diff)
downloademacs-fbfb705c15947f32b127e8eccc6a233d8ee300ed.tar.gz
(imenu-add-to-menubar): Fix again.
-rw-r--r--lisp/imenu.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/imenu.el b/lisp/imenu.el
index 8f223d3fb1c..eb7dc042e68 100644
--- a/lisp/imenu.el
+++ b/lisp/imenu.el
@@ -1002,8 +1002,7 @@ See the command `imenu' for more information."
(set-keymap-parent newmap (current-local-map))
(setq imenu--last-menubar-index-alist nil)
(define-key newmap [menu-bar index]
- (define-key map [index]
- `(menu-item ,name ,(make-sparse-keymap "Imenu"))))
+ `(menu-item ,name ,(make-sparse-keymap "Imenu")))
(use-local-map newmap)
(add-hook 'menu-bar-update-hook 'imenu-update-menubar))
(error "The mode `%s' does not support Imenu" mode-name)))