diff options
| author | Juri Linkov | 2009-11-03 07:28:59 +0000 |
|---|---|---|
| committer | Juri Linkov | 2009-11-03 07:28:59 +0000 |
| commit | c9753fb4b5dff014ea52a9b81ac3b12bcf38a5f7 (patch) | |
| tree | bd8455ff42ae2f17d4aa1a218fb3c220ecd65930 | |
| parent | cf4aaa59c365099fdaff5268603764f768a39ebd (diff) | |
| download | emacs-c9753fb4b5dff014ea52a9b81ac3b12bcf38a5f7.tar.gz emacs-c9753fb4b5dff014ea52a9b81ac3b12bcf38a5f7.zip | |
(Buffer-menu-mode-map): Add hyphen between "Buffer"
and "Menu" to make top-level menu item visually one unit (like
it's done for "Lisp-Interaction", "Emacs-Lisp" and other
multi-word menu items). Fix :help string for quit-window.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/buff-menu.el | 4 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 56a62adb847..8d211786172 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2009-11-03 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle) | ||
| 4 | (menu-bar-options-menu): Fix list quoting (Bug#4429). | ||
| 5 | |||
| 6 | * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer" | ||
| 7 | and "Menu" to make top-level menu item visually one unit (like | ||
| 8 | it's done for "Lisp-Interaction", "Emacs-Lisp" and other | ||
| 9 | multi-word menu items). Fix :help string for quit-window. | ||
| 10 | |||
| 1 | 2009-11-03 Glenn Morris <rgm@gnu.org> | 11 | 2009-11-03 Glenn Morris <rgm@gnu.org> |
| 2 | 12 | ||
| 3 | * cedet/mode-local.el (with-mode-local): Doc fix. | 13 | * cedet/mode-local.el (with-mode-local): Doc fix. |
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 3d1aa4e9f38..d838f5ee18f 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el | |||
| @@ -151,10 +151,10 @@ Auto Revert Mode.") | |||
| 151 | (define-key map [follow-link] 'mouse-face) | 151 | (define-key map [follow-link] 'mouse-face) |
| 152 | (define-key map (kbd "M-s a C-s") 'Buffer-menu-isearch-buffers) | 152 | (define-key map (kbd "M-s a C-s") 'Buffer-menu-isearch-buffers) |
| 153 | (define-key map (kbd "M-s a M-C-s") 'Buffer-menu-isearch-buffers-regexp) | 153 | (define-key map (kbd "M-s a M-C-s") 'Buffer-menu-isearch-buffers-regexp) |
| 154 | (define-key map [menu-bar Buffer-menu-mode] (cons (purecopy "Buffer Menu") menu-map)) | 154 | (define-key map [menu-bar Buffer-menu-mode] (cons (purecopy "Buffer-Menu") menu-map)) |
| 155 | (define-key menu-map [quit] | 155 | (define-key menu-map [quit] |
| 156 | `(menu-item ,(purecopy "Quit") quit-window | 156 | `(menu-item ,(purecopy "Quit") quit-window |
| 157 | :help ,(purecopy "Mark buffer on this line to be deleted by x command"))) | 157 | :help ,(purecopy "Remove the buffer menu from the display"))) |
| 158 | (define-key menu-map [rev] | 158 | (define-key menu-map [rev] |
| 159 | `(menu-item ,(purecopy "Refresh") revert-buffer | 159 | `(menu-item ,(purecopy "Refresh") revert-buffer |
| 160 | :help ,(purecopy "Refresh the *Buffer List* buffer contents"))) | 160 | :help ,(purecopy "Refresh the *Buffer List* buffer contents"))) |