diff options
| author | Richard M. Stallman | 2003-07-07 21:02:18 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-07-07 21:02:18 +0000 |
| commit | 7f8e0f51fd59f09da7aaab71e86b9d83db2777fa (patch) | |
| tree | 802890e5c892210f1034a801211669cb5c65e949 | |
| parent | 50099a09c19e147c6a067f68ca5f27f523632d37 (diff) | |
| download | emacs-7f8e0f51fd59f09da7aaab71e86b9d83db2777fa.tar.gz emacs-7f8e0f51fd59f09da7aaab71e86b9d83db2777fa.zip | |
(search-whitespace-regexp): Add a shy group around it.
| -rw-r--r-- | lisp/isearch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 754b7cf6fa1..04f8c4464ef 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -151,7 +151,7 @@ string, and RET terminates editing and does a nonincremental search." | |||
| 151 | :type 'boolean | 151 | :type 'boolean |
| 152 | :group 'isearch) | 152 | :group 'isearch) |
| 153 | 153 | ||
| 154 | (defcustom search-whitespace-regexp "\\s-+" | 154 | (defcustom search-whitespace-regexp "\\(?:\\s-+\\)" |
| 155 | "*If non-nil, regular expression to match a sequence of whitespace chars. | 155 | "*If non-nil, regular expression to match a sequence of whitespace chars. |
| 156 | This applies to regular expression incremental search. | 156 | This applies to regular expression incremental search. |
| 157 | You might want to use something like \"[ \\t\\r\\n]+\" instead. | 157 | You might want to use something like \"[ \\t\\r\\n]+\" instead. |