* lisp/isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
`search-whitespace-regexp' only when `isearch-regexp' is non-nil. Fixes: debbugs:9364
This commit is contained in:
parent
feecf43567
commit
db2440b6cc
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-10-24 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
|
||||
`search-whitespace-regexp' only when `isearch-regexp' is non-nil.
|
||||
(Bug#9364)
|
||||
|
||||
2011-10-24 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* info.el (Info-following-node-name-re): Add newline to the list
|
||||
|
|
|
@ -1452,7 +1452,7 @@ string. NLINES has the same meaning as in `occur'."
|
|||
;; Set `search-upper-case' to nil to not call
|
||||
;; `isearch-no-upper-case-p' in `occur-1'.
|
||||
(search-upper-case nil)
|
||||
(search-spaces-regexp search-whitespace-regexp))
|
||||
(search-spaces-regexp (if isearch-regexp search-whitespace-regexp)))
|
||||
(occur regexp nlines)))
|
||||
|
||||
(declare-function hi-lock-read-face-name "hi-lock" ())
|
||||
|
|
Loading…
Add table
Reference in a new issue