summaryrefslogtreecommitdiff
path: root/lisp/isearch.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-09-10 12:42:22 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-09-10 12:42:22 +0200
commit150ff9c1575b4260ca603bf0981e8612e4ea5687 (patch)
treec31c898b4ee98ec518d6575a941009928cd2f91f /lisp/isearch.el
parent061f8f28000e39f6ec4194ec2face3eb6e880846 (diff)
downloademacs-150ff9c1575b4260ca603bf0981e8612e4ea5687.tar.gz
emacs-150ff9c1575b4260ca603bf0981e8612e4ea5687.tar.bz2
emacs-150ff9c1575b4260ca603bf0981e8612e4ea5687.zip
Fix typo in previous search-whitespace-regexp change
* lisp/isearch.el (search-whitespace-regexp): Fix typo in last checkin for this variable.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r--lisp/isearch.el2
1 files changed, 1 insertions, 1 deletions
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,