]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu-bar-custom-menu):
authorRichard M. Stallman <rms@gnu.org>
Thu, 1 May 1997 22:21:19 +0000 (22:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 1 May 1997 22:21:19 +0000 (22:21 +0000)
New item `Browse All Customization'.
Rename and shuffle other items.
`Specify Group...' is now customize-group.

lisp/menu-bar.el

index 4ca22d625225684f7e2ef9a49f3b3e84989ab33d..7a13cb6936dd0ded403e25d1a44575da21b1b390 100644 (file)
@@ -321,16 +321,18 @@ Do the same for the keys of the same name."
 
 (defvar menu-bar-custom-menu (make-sparse-keymap "Customize"))
 
+(define-key menu-bar-custom-menu [custom-menu-update]
+  '("Update This Menu" . custom-menu-update))
 (define-key menu-bar-custom-menu [customize-apropos]
   '("Apropos..." . customize-apropos))
-(define-key menu-bar-custom-menu [customize-variable]
-  '("Variable..." . customize-variable))
+(define-key menu-bar-custom-menu [customize-group]
+  '("Specific Group..." . customize-group))
 (define-key menu-bar-custom-menu [customize-face]
-  '("Face..." . customize-face))
+  '("Specific Face..." . customize-face))
+(define-key menu-bar-custom-menu [customize-variable]
+  '("Specific Variable..." . customize-variable))
 (define-key menu-bar-custom-menu [customize]
-  '("Group..." . customize))
-(define-key menu-bar-custom-menu [custom-menu-update]
-  '("Update menu..." . custom-menu-update))
+  '("Browse Hierarchy of User Options" . customize))
 
 (define-key menu-bar-help-menu [customize-menu]
   (cons "Customize" menu-bar-custom-menu))