]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor fix of a recently installed documentation change
authorEli Zaretskii <eliz@gnu.org>
Tue, 5 Oct 2021 16:20:51 +0000 (19:20 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 5 Oct 2021 16:20:51 +0000 (19:20 +0300)
* doc/emacs/search.texi (Lax Search): Don't use ".." inside @samp,
it looks confusing, especially in print.  (Bug#51020)

doc/emacs/search.texi
etc/NEWS

index 761161be1c033b551567231ad946d1c31ccbe7b4..f6d9cb3be187f16f13247400c401994a144ca64f 100644 (file)
@@ -1331,8 +1331,8 @@ matches @w{@samp{foo bar}}, @w{@samp{foo@ @ bar}},
 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 considers
+sequences of newlines as well as spaces, set it to the regular expression
+@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
index 2274588913eeb15588dc111eb9b6b90c86b23983..c3bfc9c94740ff049d936a5cb5ebc65354101f38 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1168,7 +1168,7 @@ search string is at least this long.  'lazy-highlight-initial-delay'
 still applies for shorter search strings, which avoids flicker in the
 search buffer due to too many matches being highlighted.
 
----
++++
 *** The default 'search-whitespace-regexp' value has changed.
 This used to be "\\s-+", which meant that it was mode-dependent whether
 newlines were included in the whitespace set.  This has now been