# HG changeset patch # User Richard M. Stallman # Date 1038164438 0 # Node ID 710d401ff2259faa7aea808ef89677bb25f7d2e3 # Parent 442a4d06a99fa242dc005c618785a52c4700f014 (menu-bar-describe-menu): Add "What's This?" item. diff -r 442a4d06a99f -r 710d401ff225 lisp/menu-bar.el --- a/lisp/menu-bar.el Sun Nov 24 18:59:48 2002 +0000 +++ b/lisp/menu-bar.el Sun Nov 24 19:00:38 2002 +0000 @@ -1141,8 +1141,13 @@ (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-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 "Describe Key..." 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)"))