]> git.eshelyaron.com Git - emacs.git/commitdiff
(Buffer-menu-mode-map): Add hyphen between "Buffer"
authorJuri Linkov <juri@jurta.org>
Tue, 3 Nov 2009 07:28:59 +0000 (07:28 +0000)
committerJuri Linkov <juri@jurta.org>
Tue, 3 Nov 2009 07:28:59 +0000 (07:28 +0000)
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.

lisp/ChangeLog
lisp/buff-menu.el

index 56a62adb847b19d9ea6cdee5f8c859325c25cc86..8d211786172bdf2c8c614d37ee30c3812a11bb23 100644 (file)
@@ -1,3 +1,13 @@
+2009-11-03  Juri Linkov  <juri@jurta.org>
+
+       * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
+       (menu-bar-options-menu): Fix list quoting (Bug#4429).
+
+       * buff-menu.el (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.
+
 2009-11-03  Glenn Morris  <rgm@gnu.org>
 
        * cedet/mode-local.el (with-mode-local): Doc fix.
index 3d1aa4e9f38d8c0f33c93f24b65b00b38d58555c..d838f5ee18f29263066b90a52dece5e281ccff1c 100644 (file)
@@ -151,10 +151,10 @@ Auto Revert Mode.")
     (define-key map [follow-link] 'mouse-face)
     (define-key map (kbd "M-s a C-s")   'Buffer-menu-isearch-buffers)
     (define-key map (kbd "M-s a M-C-s") 'Buffer-menu-isearch-buffers-regexp)
-    (define-key map [menu-bar Buffer-menu-mode] (cons (purecopy "Buffer Menu") menu-map))
+    (define-key map [menu-bar Buffer-menu-mode] (cons (purecopy "Buffer-Menu") menu-map))
     (define-key menu-map [quit]
       `(menu-item ,(purecopy "Quit") quit-window
-                :help ,(purecopy "Mark buffer on this line to be deleted by x command")))
+                :help ,(purecopy "Remove the buffer menu from the display")))
     (define-key menu-map [rev]
       `(menu-item ,(purecopy "Refresh") revert-buffer
                 :help ,(purecopy "Refresh the *Buffer List* buffer contents")))