diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-02-15 16:54:24 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-02-15 16:54:24 +0000 |
commit | 0b60cc090810a1b3576b2ac3e58bf2ecf822a864 (patch) | |
tree | df339fa4ffc9138c9618ded9d72d015499b1516d /lisp/replace.el | |
parent | 9a19394446e3b591673a2b4b66c2fd652090d47e (diff) | |
download | emacs-0b60cc090810a1b3576b2ac3e58bf2ecf822a864.tar.gz emacs-0b60cc090810a1b3576b2ac3e58bf2ecf822a864.tar.bz2 emacs-0b60cc090810a1b3576b2ac3e58bf2ecf822a864.zip |
(replace-highlight): Bind search-whitespace-regexp to nil.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r-- | lisp/replace.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 12a99d72b9b..9790dacd82b 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -1728,6 +1728,7 @@ make, or the user didn't cancel the call." (if query-replace-lazy-highlight (let ((isearch-string string) (isearch-regexp regexp) + (search-whitespace-regexp nil) (isearch-case-fold-search case-fold)) (isearch-lazy-highlight-new-loop range-beg range-end)))) |