]> git.eshelyaron.com Git - emacs.git/commitdiff
Update documentation of search-whitespace-regexp
authorDaniel Martín <mardani29@yahoo.es>
Tue, 5 Oct 2021 07:37:56 +0000 (09:37 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 5 Oct 2021 07:37:56 +0000 (09:37 +0200)
* doc/emacs/search.texi (Lax Search): Update the documentation about
the default value of search-whitespace-regexp, as it is now
independent of the major mode's syntax table (bug#51020).

doc/emacs/search.texi

index 8a101f1150b5b44fc1f31ea4e571f1ff8ba98dfa..761161be1c033b551567231ad946d1c31ccbe7b4 100644 (file)
@@ -1332,9 +1332,8 @@ precisely, Emacs matches each sequence of space characters in the
 search string to a regular expression specified by the variable
 @code{search-whitespace-regexp}.  For example, to make spaces match
 sequences of newlines as well as spaces, set it to
-@samp{"[[:space:]\n]+"}.  The default value of this variable depends
-on the buffer's major mode; most major modes classify spaces, tabs,
-and formfeed characters as whitespace.
+@samp{"[[:space:]\n]+"}.  The default value of this variable considers
+any sequence of spaces and tab characters as whitespace.
 
   If you want whitespace characters to match exactly, you can turn lax
 space matching off by typing @kbd{M-s @key{SPC}}