diff options
| author | Richard M. Stallman | 2005-08-25 11:03:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-08-25 11:03:32 +0000 |
| commit | c6a816dfe1387deccbb9d293e054f2a6d09b8b34 (patch) | |
| tree | 35a2e3653c05a35a9029b0a7cd71fb2340aaa6ff | |
| parent | cc1f74de8c34e63a2af373481a40496b88d8da66 (diff) | |
| download | emacs-c6a816dfe1387deccbb9d293e054f2a6d09b8b34.tar.gz emacs-c6a816dfe1387deccbb9d293e054f2a6d09b8b34.zip | |
(menu-bar-describe-menu): Delete "What's New".
Rename "Describe Key" to "Describe Key or Mouse Operation".
| -rw-r--r-- | lisp/ChangeLog | 17 | ||||
| -rw-r--r-- | lisp/menu-bar.el | 9 |
2 files changed, 19 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 960d975ec4f..ab9bedcbc94 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2005-08-25 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * menu-bar.el (menu-bar-describe-menu): Delete "What's New". | ||
| 4 | Rename "Describe Key" to "Describe Key or Mouse Operation". | ||
| 5 | |||
| 6 | * mail/mailalias.el (build-mail-aliases): Delete comments | ||
| 7 | from the contents before processing them. | ||
| 8 | |||
| 9 | * isearch.el (isearch-edit-string): Erase the Search prompt | ||
| 10 | if user enters an empty string and there is no default. | ||
| 11 | |||
| 12 | * comint.el (comint-file-name-prefix): Add autoload. | ||
| 13 | |||
| 14 | 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu> | ||
| 15 | |||
| 16 | * subr.el (play-sound): Rearrange to avoid warning. | ||
| 17 | |||
| 1 | 2005-08-25 Carsten Dominik <dominik@science.uva.nl> | 18 | 2005-08-25 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 19 | ||
| 3 | * calendar/diary-lib.el (diary-modify-entry-list-string-function): | 20 | * calendar/diary-lib.el (diary-modify-entry-list-string-function): |
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 2b00bfab68f..373d45b4c2b 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -1255,15 +1255,10 @@ mail status in mode line")) | |||
| 1255 | '(menu-item "Describe Function..." describe-function | 1255 | '(menu-item "Describe Function..." describe-function |
| 1256 | :help "Display documentation of function/command")) | 1256 | :help "Display documentation of function/command")) |
| 1257 | (define-key menu-bar-describe-menu [describe-key-1] | 1257 | (define-key menu-bar-describe-menu [describe-key-1] |
| 1258 | '(menu-item "Describe Key..." describe-key | 1258 | '(menu-item "Describe Key or Mouse Operation..." describe-key |
| 1259 | ;; Users typically don't identify keys and menu items... | 1259 | ;; Users typically don't identify keys and menu items... |
| 1260 | :help "Display documentation of command bound to a \ | 1260 | :help "Display documentation of command bound to a \ |
| 1261 | key (or menu-item)")) | 1261 | key, a click, or a menu-item")) |
| 1262 | (define-key menu-bar-describe-menu [describe-key] | ||
| 1263 | '(menu-item "What's This? " describe-key | ||
| 1264 | ;; Users typically don't identify keys and menu items... | ||
| 1265 | :help "Display documentation of command bound to a \ | ||
| 1266 | key (or menu-item)")) | ||
| 1267 | (define-key menu-bar-describe-menu [describe-mode] | 1262 | (define-key menu-bar-describe-menu [describe-mode] |
| 1268 | '(menu-item "Describe Buffer Modes" describe-mode | 1263 | '(menu-item "Describe Buffer Modes" describe-mode |
| 1269 | :help "Describe this buffer's major and minor mode")) | 1264 | :help "Describe this buffer's major and minor mode")) |