diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-10 12:42:22 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-10 12:42:22 +0200 |
commit | 150ff9c1575b4260ca603bf0981e8612e4ea5687 (patch) | |
tree | c31c898b4ee98ec518d6575a941009928cd2f91f /lisp/isearch.el | |
parent | 061f8f28000e39f6ec4194ec2face3eb6e880846 (diff) | |
download | emacs-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.el | 2 |
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, |