aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1997-11-24 20:16:20 +0000
committerSimon Marshall1997-11-24 20:16:20 +0000
commita16f6b1688d52126befff3d12838b8e0d41ed19c (patch)
tree3fb70bf4a7b64504b4c9b84fb3ed7aa1a3cfa69f
parentef28d7cb2239136eca34325db73487eb3243e3ab (diff)
downloademacs-a16f6b1688d52126befff3d12838b8e0d41ed19c.tar.gz
emacs-a16f6b1688d52126befff3d12838b8e0d41ed19c.zip
Fixed duplicate KEYs in menu-bar-describe-menu.
-rw-r--r--lisp/menu-bar.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index f5170092633..9e512187c75 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -424,10 +424,10 @@ Do the same for the keys of the same name."
424 '("Describe Key..." . describe-key)) 424 '("Describe Key..." . describe-key))
425(define-key menu-bar-describe-menu [list-keybindings] 425(define-key menu-bar-describe-menu [list-keybindings]
426 '("List Key Bindings" . describe-bindings)) 426 '("List Key Bindings" . describe-bindings))
427(define-key menu-bar-describe-menu [command-apropos] 427(define-key menu-bar-describe-menu [apropos-variables]
428 '("Apropos Variables..." . apropos-variable)) 428 '("Apropos Variables..." . apropos-variable))
429(define-key menu-bar-describe-menu [command-apropos] 429(define-key menu-bar-describe-menu [apropos-commands]
430 '("Apropos Commands..." . command-apropos)) 430 '("Apropos Commands..." . apropos-command))
431(define-key menu-bar-describe-menu [describe-mode] 431(define-key menu-bar-describe-menu [describe-mode]
432 '("Describe Buffer Modes" . describe-mode)) 432 '("Describe Buffer Modes" . describe-mode))
433 433