aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog14
-rw-r--r--lisp/menu-bar.el7
2 files changed, 20 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a5b211ae393..8ca54220521 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12002-11-24 Richard M. Stallman <rms@gnu.org>
2
3 * menu-bar.el (menu-bar-describe-menu): Add "What's This?" item.
4
5 * faces.el (face-set-after-frame-default): Ignore errors
6 in face-spec-face-set.
7
8 * cus-face.el (custom-declare-face): Add face-defface-spec
9 prop after applying the face spec.
10
12002-11-23 Nick Roberts <nick@nick.uklinux.net> 112002-11-23 Nick Roberts <nick@nick.uklinux.net>
2 12
3 * tooltip.el (tooltip-gud-print-command): Add server prefix to the 13 * tooltip.el (tooltip-gud-print-command): Add server prefix to the
@@ -11,6 +21,10 @@
11 * scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right 21 * scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right
12 place. Add groups. 22 place. Add groups.
13 23
242002-11-22 Simon Marshall <marshals@perth>
25
26 * font-lock.el (c++-font-lock-extra-types): Add various STL classes.
27
142002-11-21 Nick Roberts <nick@nick.uklinux.net> 282002-11-21 Nick Roberts <nick@nick.uklinux.net>
15 29
16 * gdb-ui.el : General tidying. Patches from Stefan Monnier. 30 * gdb-ui.el : General tidying. Patches from Stefan Monnier.
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index cc7dd284b1a..ffc25b5da83 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -1141,11 +1141,16 @@ paste (in addition to the normal Emacs bindings)."
1141(define-key menu-bar-describe-menu [describe-function] 1141(define-key menu-bar-describe-menu [describe-function]
1142 '(menu-item "Describe Function..." describe-function 1142 '(menu-item "Describe Function..." describe-function
1143 :help "Display documentation of function/command")) 1143 :help "Display documentation of function/command"))
1144(define-key menu-bar-describe-menu [describe-key] 1144(define-key menu-bar-describe-menu [describe-key-1]
1145 '(menu-item "Describe Key..." describe-key 1145 '(menu-item "Describe Key..." describe-key
1146 ;; Users typically don't identify keys and menu items... 1146 ;; Users typically don't identify keys and menu items...
1147 :help "Display documentation of command bound to a \ 1147 :help "Display documentation of command bound to a \
1148key (or menu-item)")) 1148key (or menu-item)"))
1149(define-key menu-bar-describe-menu [describe-key]
1150 '(menu-item "What's This? " describe-key
1151 ;; Users typically don't identify keys and menu items...
1152 :help "Display documentation of command bound to a \
1153key (or menu-item)"))
1149(define-key menu-bar-describe-menu [describe-mode] 1154(define-key menu-bar-describe-menu [describe-mode]
1150 '(menu-item "Describe Buffer Modes" describe-mode 1155 '(menu-item "Describe Buffer Modes" describe-mode
1151 :help "Describe this buffer's major and minor mode")) 1156 :help "Describe this buffer's major and minor mode"))