aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-04-30 20:39:00 +0000
committerKim F. Storm2002-04-30 20:39:00 +0000
commit6e0fbd659e482c749df3ae2ceabc85b3b13d2da1 (patch)
treefce1656a69e29c1e143f92fe9007dd95be720bd0
parentbcd833b2a2e046778b74288ed06dc7fece5de5d8 (diff)
downloademacs-6e0fbd659e482c749df3ae2ceabc85b3b13d2da1.tar.gz
emacs-6e0fbd659e482c749df3ae2ceabc85b3b13d2da1.zip
(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]
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/menu-bar.el13
2 files changed, 16 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 80e88771dec..b81ebc84d07 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12002-04-30 Kim F. Storm <storm@cua.dk>
2
3 * menu-bar.el (menu-bar-custom-menu): Change "Recently Changed
4 Options" to "New Options..."; rephrase tooltip.
5 Rephrase tooltip for "Specific Option...".
6 Added "Saved Options" item. [from Simon Marshall]
7
12002-04-30 Richard M. Stallman <rms@gnu.org> 82002-04-30 Richard M. Stallman <rms@gnu.org>
2 9
3 * time.el (display-time-mail-directory) 10 * time.el (display-time-mail-directory)
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 48987e54b1f..adc4c466124 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -510,7 +510,7 @@ Do the same for the keys of the same name."
510(define-key menu-bar-custom-menu [customize-apropos] 510(define-key menu-bar-custom-menu [customize-apropos]
511 '(menu-item "Settings Matching Regexp..." customize-apropos 511 '(menu-item "Settings Matching Regexp..." customize-apropos
512 :help "Browse customizable settings whose names match regexp")) 512 :help "Browse customizable settings whose names match regexp"))
513(define-key menu-bar-custom-menu [separator-2] 513(define-key menu-bar-custom-menu [separator-1]
514 '("--")) 514 '("--"))
515(define-key menu-bar-custom-menu [customize-group] 515(define-key menu-bar-custom-menu [customize-group]
516 '(menu-item "Specific Group..." customize-group 516 '(menu-item "Specific Group..." customize-group
@@ -520,10 +520,15 @@ Do the same for the keys of the same name."
520 :help "Customize attributes of specific face")) 520 :help "Customize attributes of specific face"))
521(define-key menu-bar-custom-menu [customize-option] 521(define-key menu-bar-custom-menu [customize-option]
522 '(menu-item "Specific Option..." customize-option 522 '(menu-item "Specific Option..." customize-option
523 :help "Change value of specific option")) 523 :help "Customize value of specific option"))
524(define-key menu-bar-custom-menu [separator-2]
525 '("--"))
524(define-key menu-bar-custom-menu [customize-changed-options] 526(define-key menu-bar-custom-menu [customize-changed-options]
525 '(menu-item "Recently Changed Options..." customize-changed-options 527 '(menu-item "New Options..." customize-changed-options
526 :help "Customize options changed in recent versions")) 528 :help "Options added or changed in recent Emacs versions"))
529(define-key menu-bar-custom-menu [customize-saved]
530 '(menu-item "Saved Options" customize-saved
531 :help "Customize previously saved options"))
527(define-key menu-bar-custom-menu [separator-3] 532(define-key menu-bar-custom-menu [separator-3]
528 '("--")) 533 '("--"))
529(define-key menu-bar-custom-menu [customize-browse] 534(define-key menu-bar-custom-menu [customize-browse]