Mercurial > emacs
changeset 51804:c1f7c7481134
(search-whitespace-regexp): Add a shy group around it.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 07 Jul 2003 21:02:18 +0000 |
parents | ebe64300a9d5 |
children | 7a3de98ae801 |
files | lisp/isearch.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/isearch.el Mon Jul 07 21:01:55 2003 +0000 +++ b/lisp/isearch.el Mon Jul 07 21:02:18 2003 +0000 @@ -151,7 +151,7 @@ :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.