diff options
| author | Richard M. Stallman | 1998-08-18 07:45:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-18 07:45:27 +0000 |
| commit | dcb6bf2b6fd0f4dc2aa3b57efde1badaf1717bd3 (patch) | |
| tree | 2c6970eca34024b0da89f0bb7069d28ff4906db0 | |
| parent | 01c925e95e7ed889b5feded558c5b60baa9933c3 (diff) | |
| download | emacs-dcb6bf2b6fd0f4dc2aa3b57efde1badaf1717bd3.tar.gz emacs-dcb6bf2b6fd0f4dc2aa3b57efde1badaf1717bd3.zip | |
(search-whitespace-regexp): Doc fix.
| -rw-r--r-- | lisp/isearch.el | 4 |
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. |
| 155 | This applies to regular expression incremental search. | 155 | This applies to regular expression incremental search. |
| 156 | You might want to use something like \"[ \\t\\r\\n]+\" instead." | 156 | You might want to use something like \"[ \\t\\r\\n]+\" instead. |
| 157 | In the Customization buffer, that is `[' followed by a space, | ||
| 158 | a tab, a carriage return (control-M), a newline, and `]+'." | ||
| 157 | :type 'regexp | 159 | :type 'regexp |
| 158 | :group 'isearch) | 160 | :group 'isearch) |
| 159 | 161 | ||