mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(menu-bar-describe-menu): Add "What's This?" item.
This commit is contained in:
parent
633d0ba56a
commit
686e63b330
2 changed files with 20 additions and 1 deletions
|
|
@ -1,3 +1,13 @@
|
|||
2002-11-24 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* menu-bar.el (menu-bar-describe-menu): Add "What's This?" item.
|
||||
|
||||
* faces.el (face-set-after-frame-default): Ignore errors
|
||||
in face-spec-face-set.
|
||||
|
||||
* cus-face.el (custom-declare-face): Add face-defface-spec
|
||||
prop after applying the face spec.
|
||||
|
||||
2002-11-23 Nick Roberts <nick@nick.uklinux.net>
|
||||
|
||||
* tooltip.el (tooltip-gud-print-command): Add server prefix to the
|
||||
|
|
@ -11,6 +21,10 @@
|
|||
* scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right
|
||||
place. Add groups.
|
||||
|
||||
2002-11-22 Simon Marshall <marshals@perth>
|
||||
|
||||
* font-lock.el (c++-font-lock-extra-types): Add various STL classes.
|
||||
|
||||
2002-11-21 Nick Roberts <nick@nick.uklinux.net>
|
||||
|
||||
* gdb-ui.el : General tidying. Patches from Stefan Monnier.
|
||||
|
|
|
|||
|
|
@ -1141,11 +1141,16 @@ paste (in addition to the normal Emacs bindings)."
|
|||
(define-key menu-bar-describe-menu [describe-function]
|
||||
'(menu-item "Describe Function..." describe-function
|
||||
:help "Display documentation of function/command"))
|
||||
(define-key menu-bar-describe-menu [describe-key]
|
||||
(define-key menu-bar-describe-menu [describe-key-1]
|
||||
'(menu-item "Describe Key..." describe-key
|
||||
;; Users typically don't identify keys and menu items...
|
||||
:help "Display documentation of command bound to a \
|
||||
key (or menu-item)"))
|
||||
(define-key menu-bar-describe-menu [describe-key]
|
||||
'(menu-item "What's This? " describe-key
|
||||
;; Users typically don't identify keys and menu items...
|
||||
:help "Display documentation of command bound to a \
|
||||
key (or menu-item)"))
|
||||
(define-key menu-bar-describe-menu [describe-mode]
|
||||
'(menu-item "Describe Buffer Modes" describe-mode
|
||||
:help "Describe this buffer's major and minor mode"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue