]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu-bar-custom-menu): Change "Recently Changed Options"
authorKim F. Storm <storm@cua.dk>
Tue, 30 Apr 2002 20:39:00 +0000 (20:39 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 30 Apr 2002 20:39:00 +0000 (20:39 +0000)
to "New Options..."; rephrase tooltip.
Rephrase tooltip for "Specific Option...".
Added "Saved Options" item.  [from Simon Marshall]

lisp/ChangeLog
lisp/menu-bar.el

index 80e88771decd46c95f83609ba44ace99a3d98455..b81ebc84d077f158e971b632e11374e6810181af 100644 (file)
@@ -1,3 +1,10 @@
+2002-04-30  Kim F. Storm  <storm@cua.dk>
+
+       * menu-bar.el (menu-bar-custom-menu): Change "Recently Changed
+       Options" to "New Options..."; rephrase tooltip.
+       Rephrase tooltip for "Specific Option...".
+       Added "Saved Options" item.  [from Simon Marshall]
+
 2002-04-30  Richard M. Stallman  <rms@gnu.org>
 
        * time.el (display-time-mail-directory) 
index 48987e54b1fb89e30f1f11ac5ac51c89eac6c2a3..adc4c4661242e205d77c16e95a36ee63be114b40 100644 (file)
@@ -510,7 +510,7 @@ Do the same for the keys of the same name."
 (define-key menu-bar-custom-menu [customize-apropos]
   '(menu-item "Settings Matching Regexp..." customize-apropos
              :help "Browse customizable settings whose names match regexp"))
-(define-key menu-bar-custom-menu [separator-2]
+(define-key menu-bar-custom-menu [separator-1]
   '("--"))
 (define-key menu-bar-custom-menu [customize-group]
   '(menu-item "Specific Group..." customize-group
@@ -520,10 +520,15 @@ Do the same for the keys of the same name."
              :help "Customize attributes of specific face"))
 (define-key menu-bar-custom-menu [customize-option]
   '(menu-item "Specific Option..." customize-option
-             :help "Change value of specific option"))
+             :help "Customize value of specific option"))
+(define-key menu-bar-custom-menu [separator-2]
+  '("--"))
 (define-key menu-bar-custom-menu [customize-changed-options]
-  '(menu-item "Recently Changed Options..." customize-changed-options
-             :help "Customize options changed in recent versions"))
+  '(menu-item "New Options..." customize-changed-options
+             :help "Options added or changed in recent Emacs versions"))
+(define-key menu-bar-custom-menu [customize-saved]
+  '(menu-item "Saved Options" customize-saved
+             :help "Customize previously saved options"))
 (define-key menu-bar-custom-menu [separator-3]
   '("--"))
 (define-key menu-bar-custom-menu [customize-browse]