diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-26 06:30:19 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-26 06:30:19 +0200 |
commit | f6040018c5e281ee31a3e499f43f29fbf1e817e9 (patch) | |
tree | 51013466d2b1abcb8a834203e3b31d7c14024756 /doc | |
parent | 06cec5ee0bd2c2a8fbc761bd5eb0254a4ecf10f4 (diff) | |
parent | 970190b84485e4511b094546395a7e710f894fae (diff) | |
download | emacs-f6040018c5e281ee31a3e499f43f29fbf1e817e9.tar.gz |
Merge from origin/emacs-28
970190b844 Avoid infloop in 'recenter'
a866674b2a Fix inaccuracies in "lax search" documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/emacs/search.texi | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi index f4e12d29e99..27d4db85412 100644 --- a/doc/emacs/search.texi +++ b/doc/emacs/search.texi @@ -1428,16 +1428,18 @@ of its accented cousins like @code{@"a} and @code{@'a}, i.e., the match disregards the diacritics that distinguish these variants. In addition, @code{a} matches other characters that resemble it, or have it as part of their graphical representation, -such as U+249C @sc{parenthesized latin small letter a} and U+2100 -@sc{account of} (which looks like a small @code{a} over @code{c}). +such as U+00AA @sc{feminine ordinal indicator} and U+24D0 +@sc{circled latin small letter a} (which looks like a small @code{a} +inside a circle). Similarly, the @acronym{ASCII} double-quote character @code{"} matches all the other variants of double quotes defined by the Unicode standard. Finally, character folding can make a sequence of one or more characters match another sequence of a different length: for example, the sequence of two characters @code{ff} matches U+FB00 -@sc{latin small ligature ff}. Character sequences that are not identical, -but match under character folding are known as @dfn{equivalent -character sequences}. +@sc{latin small ligature ff} and the sequence @code{(a)} matches +U+249C @sc{parenthesized latin small letter a}. Character sequences +that are not identical, but match under character folding are known as +@dfn{equivalent character sequences}. @kindex M-s ' @r{(Incremental Search)} @findex isearch-toggle-char-fold |