(search-whitespace-regexp): Add a shy group around it.

This commit is contained in:
Richard M. Stallman 2003-07-07 21:02:18 +00:00
parent 50099a09c1
commit 7f8e0f51fd

View file

@ -151,7 +151,7 @@ string, and RET terminates editing and does a nonincremental search."
:type 'boolean
:group 'isearch)
(defcustom search-whitespace-regexp "\\s-+"
(defcustom search-whitespace-regexp "\\(?:\\s-+\\)"
"*If non-nil, regular expression to match a sequence of whitespace chars.
This applies to regular expression incremental search.
You might want to use something like \"[ \\t\\r\\n]+\" instead.