From: Lars Ingebrigtsen Date: Fri, 10 Sep 2021 10:42:22 +0000 (+0200) Subject: Fix typo in previous search-whitespace-regexp change X-Git-Tag: emacs-28.0.90~1085 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=150ff9c1575b4260ca603bf0981e8612e4ea5687;p=emacs.git Fix typo in previous search-whitespace-regexp change * lisp/isearch.el (search-whitespace-regexp): Fix typo in last checkin for this variable. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 357760caee6..133c604bb38 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -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-regexpx (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,