]> code.delx.au - gnu-emacs/commitdiff
(isearch-mode): Handle negative search-slow-window-lines correctly.
authorRichard M. Stallman <rms@gnu.org>
Tue, 13 Nov 2001 16:39:40 +0000 (16:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 13 Nov 2001 16:39:40 +0000 (16:39 +0000)
(isearch-whitespace-chars): Doc fix.

lisp/ChangeLog
lisp/isearch.el

index 832c70ad3e692d304879468d60ef9ba3e8fe1abf..776969a11fb5e660ad90cb19c81be9a6fa23a436 100644 (file)
@@ -1,3 +1,10 @@
+2001-11-13  Per Starback  <starback@ling.uu.se>
+
+       * isearch.el (isearch-whitespace-chars): Doc fix.
+
+       * isearch.el (isearch-mode): Handle negative search-slow-window-lines
+       correctly.
+
 2001-11-13  Stefan Monnier  <monnier@cs.yale.edu>
 
        * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
index 5d770d89706eaf342612231c177fc27f4fc04eda..29590e4f9f6f1e391fa58b2d7b76ae5f559b69e6 100644 (file)
@@ -547,7 +547,8 @@ is treated as a regexp.  See \\[isearch-forward] for more info."
        isearch-within-brackets nil
        isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed)
                                        (> (window-height)
-                                          (* 4 search-slow-window-lines)))
+                                          (* 4
+                                             (abs search-slow-window-lines))))
        isearch-other-end nil
        isearch-small-window nil
        isearch-just-started t
@@ -1327,7 +1328,7 @@ Obsolete."
 
 (defun isearch-whitespace-chars ()
   "Match all whitespace chars, if in regexp mode.
-If you want to search for just a space, type \\[quoted-insert] SPC."
+If you want to search for just a space, type \\<isearch-mode-map>\\[isearch-quote-char] SPC."
   (interactive)
   (if isearch-regexp 
       (if (and search-whitespace-regexp (not isearch-within-brackets)