comparison lisp/menu-bar.el @ 45044:ab83b8e87ebd

(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]
author Kim F. Storm <storm@cua.dk>
date Tue, 30 Apr 2002 20:38:21 +0000
parents 5e84d4496348
children c7b6259de115
comparison
equal deleted inserted replaced
45043:76dd94abc805 45044:ab83b8e87ebd
508 '(menu-item "Options Matching Regexp..." customize-apropos-options 508 '(menu-item "Options Matching Regexp..." customize-apropos-options
509 :help "Browse options whose names match regexp")) 509 :help "Browse options whose names match regexp"))
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
517 :help "Customize settings of specific group")) 517 :help "Customize settings of specific group"))
518 (define-key menu-bar-custom-menu [customize-face] 518 (define-key menu-bar-custom-menu [customize-face]
519 '(menu-item "Specific Face..." customize-face 519 '(menu-item "Specific Face..." customize-face
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]
530 '(menu-item "Browse Customization Groups" customize-browse 535 '(menu-item "Browse Customization Groups" customize-browse
531 :help "Browse all customization groups")) 536 :help "Browse all customization groups"))