# HG changeset patch # User Richard M. Stallman # Date 1005669568 0 # Node ID fcd14406bac3134605363e59999674bff0fa066f # Parent 85e9ec0653082e63d39e48835384a7116d0b7560 (isearch-mode): Handle negative search-slow-window-lines correctly. (isearch-whitespace-chars): Doc fix. diff -r 85e9ec065308 -r fcd14406bac3 lisp/isearch.el --- a/lisp/isearch.el Tue Nov 13 14:25:57 2001 +0000 +++ b/lisp/isearch.el Tue Nov 13 16:39:28 2001 +0000 @@ -547,7 +547,8 @@ 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 @@ (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-quote-char] SPC." (interactive) (if isearch-regexp (if (and search-whitespace-regexp (not isearch-within-brackets)