diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/menu-bar.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 915639c94af..5ec35dd90fc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-10-13 Glenn Morris <rgm@gnu.org> | 1 | 2013-10-13 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * menu-bar.el (menu-bar-update-buffers): | ||
| 4 | Unify Buffers menu prompt string. (Bug#15576) | ||
| 5 | |||
| 3 | * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434) | 6 | * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434) |
| 4 | 7 | ||
| 5 | * emacs-lisp/authors.el (authors-aliases, authors-ignored-files): | 8 | * emacs-lisp/authors.el (authors-aliases, authors-ignored-files): |
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 43937d03905..851e9b24649 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -2046,7 +2046,7 @@ It must accept a buffer as its only required argument.") | |||
| 2046 | ;; We used to "(define-key (current-global-map) [menu-bar buffer]" | 2046 | ;; We used to "(define-key (current-global-map) [menu-bar buffer]" |
| 2047 | ;; but that did not do the right thing when the [menu-bar buffer] | 2047 | ;; but that did not do the right thing when the [menu-bar buffer] |
| 2048 | ;; entry above had been moved (e.g. to a parent keymap). | 2048 | ;; entry above had been moved (e.g. to a parent keymap). |
| 2049 | (setcdr global-buffers-menu-map (cons "Select Buffer" buffers-menu))))) | 2049 | (setcdr global-buffers-menu-map (cons "Buffers" buffers-menu))))) |
| 2050 | 2050 | ||
| 2051 | (add-hook 'menu-bar-update-hook 'menu-bar-update-buffers) | 2051 | (add-hook 'menu-bar-update-hook 'menu-bar-update-buffers) |
| 2052 | 2052 | ||