]> git.eshelyaron.com Git - emacs.git/commitdiff
Make isearch-lax-whitespace a user option
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 18 Apr 2022 11:36:05 +0000 (13:36 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 18 Apr 2022 11:36:05 +0000 (13:36 +0200)
* lisp/isearch.el (isearch-lax-whitespace): Make into a defcustom
(bug#20351).

lisp/isearch.el

index 168d71ada3a02b19bf0a2af1f2734c65cb6c8ddb..be0227b6e75e718724079b3497114493a88c0e10 100644 (file)
@@ -868,14 +868,16 @@ This variable is set and changed during isearch.  To change the
 default behavior used for searches, see `search-default-mode'
 instead.")
 
-(defvar isearch-lax-whitespace t
+(defcustom isearch-lax-whitespace t
   "If non-nil, a space will match a sequence of whitespace chars.
 When you enter a space or spaces in ordinary incremental search, it
 will match any sequence matched by the regexp defined by the variable
 `search-whitespace-regexp'.  If the value is nil, each space you type
 matches literally, against one space.  You can toggle the value of this
 variable by the command `isearch-toggle-lax-whitespace', usually bound to
-`M-s SPC' during isearch.")
+`M-s SPC' during isearch."
+  :type 'boolean
+  :version "25.1")
 
 (defvar isearch-regexp-lax-whitespace nil
   "If non-nil, a space will match a sequence of whitespace chars.