aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/isearch.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 1753dfcd8ff..03e67f37832 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -153,7 +153,9 @@ string, and RET terminates editing and does a nonincremental search."
153(defcustom search-whitespace-regexp "\\s-+" 153(defcustom search-whitespace-regexp "\\s-+"
154 "*If non-nil, regular expression to match a sequence of whitespace chars. 154 "*If non-nil, regular expression to match a sequence of whitespace chars.
155This applies to regular expression incremental search. 155This applies to regular expression incremental search.
156You might want to use something like \"[ \\t\\r\\n]+\" instead." 156You might want to use something like \"[ \\t\\r\\n]+\" instead.
157In the Customization buffer, that is `[' followed by a space,
158a tab, a carriage return (control-M), a newline, and `]+'."
157 :type 'regexp 159 :type 'regexp
158 :group 'isearch) 160 :group 'isearch)
159 161