From: Simon Marshall Date: Mon, 24 Nov 1997 20:16:20 +0000 (+0000) Subject: Fixed duplicate KEYs in menu-bar-describe-menu. X-Git-Tag: emacs-20.3~2731 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a16f6b1688d52126befff3d12838b8e0d41ed19c;p=emacs.git Fixed duplicate KEYs in menu-bar-describe-menu. --- 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." '("Describe Key..." . describe-key)) (define-key menu-bar-describe-menu [list-keybindings] '("List Key Bindings" . describe-bindings)) -(define-key menu-bar-describe-menu [command-apropos] +(define-key menu-bar-describe-menu [apropos-variables] '("Apropos Variables..." . apropos-variable)) -(define-key menu-bar-describe-menu [command-apropos] - '("Apropos Commands..." . command-apropos)) +(define-key menu-bar-describe-menu [apropos-commands] + '("Apropos Commands..." . apropos-command)) (define-key menu-bar-describe-menu [describe-mode] '("Describe Buffer Modes" . describe-mode))