]> git.eshelyaron.com Git - emacs.git/commitdiff
Further fix for the search-whitespace-regexp change
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 10 Sep 2021 10:56:22 +0000 (12:56 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 10 Sep 2021 10:56:22 +0000 (12:56 +0200)
* lisp/isearch.el (search-whitespace-regexp): Fix yet another typo
in this one-line change (bug#21278).

lisp/isearch.el

index 8a79fd5a2636f44f2decfa37889e65077cc3e1c1..efa7db6fe9c991e29ed6250aefe50bdaffd05811 100644 (file)
@@ -114,7 +114,7 @@ is called to let you enter the search string, and RET terminates editing
 and does a nonincremental search.)"
   :type 'boolean)
 
-(defcustom search-whitespace-regexp (purecopy "[ \t]")
+(defcustom search-whitespace-regexp (purecopy "[ \t]+")
   "If non-nil, regular expression to match a sequence of whitespace chars.
 When you enter a space or spaces in the incremental search, it
 will match any sequence matched by this regexp.  As an exception,