# HG changeset patch # User Richard M. Stallman # Date 1057611738 0 # Node ID c1f7c7481134e998afa562445fb84be359825545 # Parent ebe64300a9d5350aa0fdd9989cbe9e369099e3b6 (search-whitespace-regexp): Add a shy group around it. diff -r ebe64300a9d5 -r c1f7c7481134 lisp/isearch.el --- 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.