aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-10-12 22:20:15 -0700
committerGlenn Morris2013-10-12 22:20:15 -0700
commitfeab892d6b45f4cf6bf4749a03d765ce6a265ce9 (patch)
tree8bce3787c52207880260fca879930f8edcbb17af
parentb22d06865b8497477b16d41388941cf231909b25 (diff)
downloademacs-feab892d6b45f4cf6bf4749a03d765ce6a265ce9.tar.gz
emacs-feab892d6b45f4cf6bf4749a03d765ce6a265ce9.zip
* menu-bar.el (menu-bar-update-buffers): Unify Buffers menu prompt string.
Fixes: debbugs:15576
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/menu-bar.el2
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 @@
12013-10-13 Glenn Morris <rgm@gnu.org> 12013-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