aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-12-23 17:59:54 +0000
committerRichard M. Stallman2002-12-23 17:59:54 +0000
commit76efe10ec7fcb710192af84110a8afb1cec9f25a (patch)
tree3f8439340392936f7e15005312d74593c53bed8c
parent74c7e66da4da8e03045bc678d307f077ec3d28b3 (diff)
downloademacs-76efe10ec7fcb710192af84110a8afb1cec9f25a.tar.gz
emacs-76efe10ec7fcb710192af84110a8afb1cec9f25a.zip
Don't define a name for the minor mode menu.
-rw-r--r--lisp/ChangeLog32
-rw-r--r--lisp/emacs-lisp/checkdoc.el6
2 files changed, 33 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 30f7f91dba9..fad8b49ae50 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,31 @@
12002-12-23 Richard M. Stallman <rms@gnu.org>
2
3 * emacs-lisp/checkdoc.el: Don't define a name for the minor mode menu.
4
5 * emacs-lisp/easymenu.el (easy-menu-do-define): Handle nil for SYMBOL.
6 (easy-menu-define): Doc fix, say SYMBOL can be nil.
7
8 * window.el (save-selected-window): Save and restore
9 selected windows of all frames.
10
11 * cus-start.el (scroll-up-aggressively, scroll-down-aggressively):
12 Update custom types.
13
142002-12-23 Matthew Swift <swift@alum.mit.edu>
15
16 * emacs-lisp/rx.el (rx-and): Generate a shy group.
17 Specify `no-group' when calling rx-to-string.
18 (rx-submatch): Specify `no-group' when calling rx-to-string.
19 (rx-kleene): Use rx-atomic-p to decide whether to make a group.
20 (rx-atomic-p): New function.
21
222002-12-23 Kevin Ryde <user42@zip.com.au>
23
24 * info-look.el (info-lookup): For ease of use try item
25 case-insensitive if not found case-sensitive.
26 Do case sensitive search in index nodes, so items differing only in
27 case go correctly to their respective nodes.
28
12002-12-22 Richard M. Stallman <rms@gnu.org> 292002-12-22 Richard M. Stallman <rms@gnu.org>
2 30
3 * subr.el (add-to-invisibility-spec): If it was t, start it out at (t). 31 * subr.el (add-to-invisibility-spec): If it was t, start it out at (t).
@@ -1560,7 +1588,7 @@
1560 * progmodes/make-mode.el (makefile-warn-continuations): 1588 * progmodes/make-mode.el (makefile-warn-continuations):
1561 Don't barf when there _aren't_ any suspicious continuations. 1589 Don't barf when there _aren't_ any suspicious continuations.
1562 1590
15632002-10-28 Matthew Swift <swift@alum.mit.edu> (tiny change) 15912002-10-28 Matthew Swift <swift@alum.mit.edu>
1564 1592
1565 * progmodes/compile.el (grep-find-use-xargs): Fix docstring. 1593 * progmodes/compile.el (grep-find-use-xargs): Fix docstring.
1566 1594
@@ -1638,7 +1666,7 @@
1638 * textmodes/outline.el (outline-next-heading): Make sure the match-data 1666 * textmodes/outline.el (outline-next-heading): Make sure the match-data
1639 is really correct where returning. 1667 is really correct where returning.
1640 1668
16412002-10-24 Matthew Swift <swift@alum.mit.edu> (tiny change) 16692002-10-24 Matthew Swift <swift@alum.mit.edu>
1642 1670
1643 * textmodes/outline.el (outline-minor-mode): Add customization group. 1671 * textmodes/outline.el (outline-minor-mode): Add customization group.
1644 1672
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index 40723295865..8269d9dec9e 100644
--- a/lisp/emacs-lisp/checkdoc.el
+++ b/lisp/emacs-lisp/checkdoc.el
@@ -1148,13 +1148,13 @@ generating a buffered list of errors."
1148 map) 1148 map)
1149 "Keymap used to override evaluation key-bindings for documentation checking.") 1149 "Keymap used to override evaluation key-bindings for documentation checking.")
1150 1150
1151(defvar checkdoc-minor-keymap checkdoc-minor-mode-map 1151(defvaralias 'checkdoc-minor-keymap 'checkdoc-minor-mode-map
1152 "Obsolete! Use `checkdoc-minor-mode-map'.") 1152 "Obsolete--use `checkdoc-minor-mode-map'.")
1153 1153
1154;; Add in a menubar with easy-menu 1154;; Add in a menubar with easy-menu
1155 1155
1156(easy-menu-define 1156(easy-menu-define
1157 checkdoc-minor-menu checkdoc-minor-mode-map "Checkdoc Minor Mode Menu" 1157 nil checkdoc-minor-mode-map "Checkdoc Minor Mode Menu"
1158 '("CheckDoc" 1158 '("CheckDoc"
1159 ["Interactive Buffer Style Check" checkdoc t] 1159 ["Interactive Buffer Style Check" checkdoc t]
1160 ["Interactive Buffer Style and Spelling Check" checkdoc-ispell t] 1160 ["Interactive Buffer Style and Spelling Check" checkdoc-ispell t]