diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-11-06 23:21:01 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-11-06 23:21:01 +0100 |
commit | 61d55ce3bb4dc1f7deac552439c61bbe0909dcdb (patch) | |
tree | e8dd99405ac50de77f19d32b395c7bad6ac61c7a /doc/emacs | |
parent | 8fe62b2ab571ba313587e8543006eca03ff36025 (diff) | |
parent | 70fb03a49af07bd644e831c7d2e8d219aa910535 (diff) | |
download | emacs-61d55ce3bb4dc1f7deac552439c61bbe0909dcdb.tar.gz emacs-61d55ce3bb4dc1f7deac552439c61bbe0909dcdb.tar.bz2 emacs-61d55ce3bb4dc1f7deac552439c61bbe0909dcdb.zip |
Merge from origin/emacs-28
70fb03a49a ; * doc/emacs/search.texi (Lax Search): Improve suggestion...
5779df0c5b ; * doc/lispref/searching.texi: Remove reference to Posix....
46929f6b73 ; Improve documentation of character classes in regexps
Diffstat (limited to 'doc/emacs')
-rw-r--r-- | doc/emacs/search.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi index 0090bc34005..63541d78a5a 100644 --- a/doc/emacs/search.texi +++ b/doc/emacs/search.texi @@ -1359,7 +1359,7 @@ Hence, @w{@samp{foo bar}} matches @w{@samp{foo bar}}, @w{@samp{foo@ @ bar}}, @w{@samp{foo@ @ @ bar}}, and so on (but not @samp{foobar}). If you want to make spaces match sequences of newlines as well as spaces and tabs, customize the option to make its value be the regular -expression @samp{[[:space:]\n]+}. (The default behavior of the +expression @samp{[ \t\n]+}. (The default behavior of the incremental regexp search is different; see @ref{Regexp Search}.) If you want whitespace characters to match exactly, you can turn lax |