]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't define a name for the minor mode menu.
authorRichard M. Stallman <rms@gnu.org>
Mon, 23 Dec 2002 17:59:54 +0000 (17:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 23 Dec 2002 17:59:54 +0000 (17:59 +0000)
lisp/ChangeLog
lisp/emacs-lisp/checkdoc.el

index 30f7f91dba98d44028f90ee7af533387977ffe01..fad8b49ae508b92e948cc0234f09fef3d77f1d7c 100644 (file)
@@ -1,3 +1,31 @@
+2002-12-23  Richard M. Stallman  <rms@gnu.org>
+
+       * emacs-lisp/checkdoc.el: Don't define a name for the minor mode menu.
+
+       * emacs-lisp/easymenu.el (easy-menu-do-define): Handle nil for SYMBOL.
+       (easy-menu-define): Doc fix, say SYMBOL can be nil.
+
+       * window.el (save-selected-window): Save and restore
+       selected windows of all frames.
+
+       * cus-start.el (scroll-up-aggressively, scroll-down-aggressively):
+       Update custom types.
+
+2002-12-23  Matthew Swift  <swift@alum.mit.edu>
+
+       * emacs-lisp/rx.el (rx-and): Generate a shy group.
+       Specify `no-group' when calling rx-to-string.
+       (rx-submatch): Specify `no-group' when calling rx-to-string.
+       (rx-kleene): Use rx-atomic-p to decide whether to make a group.
+       (rx-atomic-p): New function.
+
+2002-12-23  Kevin Ryde  <user42@zip.com.au>
+
+       * info-look.el (info-lookup): For ease of use try item
+       case-insensitive if not found case-sensitive.
+       Do case sensitive search in index nodes, so items differing only in
+       case go correctly to their respective nodes.
+
 2002-12-22  Richard M. Stallman  <rms@gnu.org>
 
        * subr.el (add-to-invisibility-spec): If it was t, start it out at (t).
        * progmodes/make-mode.el (makefile-warn-continuations):
        Don't barf when there _aren't_ any suspicious continuations.
 
-2002-10-28  Matthew Swift  <swift@alum.mit.edu>  (tiny change)
+2002-10-28  Matthew Swift  <swift@alum.mit.edu>
 
        * progmodes/compile.el (grep-find-use-xargs): Fix docstring.
 
        * textmodes/outline.el (outline-next-heading): Make sure the match-data
        is really correct where returning.
 
-2002-10-24  Matthew Swift  <swift@alum.mit.edu>  (tiny change)
+2002-10-24  Matthew Swift  <swift@alum.mit.edu>
 
        * textmodes/outline.el (outline-minor-mode): Add customization group.
 
index 40723295865427b3738f3cceed0efe0e2d8acf1f..8269d9dec9e245aab2dcb4e5cf9b07f48db15a01 100644 (file)
@@ -1148,13 +1148,13 @@ generating a buffered list of errors."
     map)
   "Keymap used to override evaluation key-bindings for documentation checking.")
 
-(defvar checkdoc-minor-keymap checkdoc-minor-mode-map
-  "Obsolete!  Use `checkdoc-minor-mode-map'.")
+(defvaralias 'checkdoc-minor-keymap 'checkdoc-minor-mode-map
+  "Obsolete--use `checkdoc-minor-mode-map'.")
 
 ;; Add in a menubar with easy-menu
 
 (easy-menu-define
checkdoc-minor-menu checkdoc-minor-mode-map "Checkdoc Minor Mode Menu"
nil checkdoc-minor-mode-map "Checkdoc Minor Mode Menu"
  '("CheckDoc"
    ["Interactive Buffer Style Check" checkdoc t]
    ["Interactive Buffer Style and Spelling Check" checkdoc-ispell t]