diff options
author | Kim F. Storm <storm@cua.dk> | 2002-04-30 20:39:00 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2002-04-30 20:39:00 +0000 |
commit | 6e0fbd659e482c749df3ae2ceabc85b3b13d2da1 (patch) | |
tree | fce1656a69e29c1e143f92fe9007dd95be720bd0 /lisp/menu-bar.el | |
parent | bcd833b2a2e046778b74288ed06dc7fece5de5d8 (diff) | |
download | emacs-6e0fbd659e482c749df3ae2ceabc85b3b13d2da1.tar.gz |
(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]
Diffstat (limited to 'lisp/menu-bar.el')
-rw-r--r-- | lisp/menu-bar.el | 13 |
1 files changed, 9 insertions, 4 deletions
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." (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] |