diff options
| author | Simon Marshall | 1997-11-24 20:16:20 +0000 |
|---|---|---|
| committer | Simon Marshall | 1997-11-24 20:16:20 +0000 |
| commit | a16f6b1688d52126befff3d12838b8e0d41ed19c (patch) | |
| tree | 3fb70bf4a7b64504b4c9b84fb3ed7aa1a3cfa69f | |
| parent | ef28d7cb2239136eca34325db73487eb3243e3ab (diff) | |
| download | emacs-a16f6b1688d52126befff3d12838b8e0d41ed19c.tar.gz emacs-a16f6b1688d52126befff3d12838b8e0d41ed19c.zip | |
Fixed duplicate KEYs in menu-bar-describe-menu.
| -rw-r--r-- | lisp/menu-bar.el | 6 |
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 | ||