summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-18 07:45:27 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-18 07:45:27 +0000
commitad1587b4c2db0cd3c0ce5616ab400c9cf7a6bb3e (patch)
tree8e175dea70661c5c7655227fe7d0a03dca25ec5b
parent42382b73e84e9e9d089f375e3155f0d5a1940c07 (diff)
downloademacs-ad1587b4c2db0cd3c0ce5616ab400c9cf7a6bb3e.tar.gz
(search-whitespace-regexp): Doc fix.
-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."
(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."
+You might want to use something like \"[ \\t\\r\\n]+\" instead.
+In the Customization buffer, that is `[' followed by a space,
+a tab, a carriage return (control-M), a newline, and `]+'."
:type 'regexp
:group 'isearch)