# HG changeset patch # User Chong Yidong # Date 1257722351 0 # Node ID 68729184628a875ba3477100a9534226fb6e6001 # Parent b3189a049bbff1d26044758dcb86f10dccf21fe4 * searching.texi (Char Classes): Note that [:upper:] and [:lower:] are affected by case-fold-search (Bug#4483). diff -r b3189a049bbf -r 68729184628a doc/lispref/ChangeLog --- a/doc/lispref/ChangeLog Sun Nov 08 23:05:49 2009 +0000 +++ b/doc/lispref/ChangeLog Sun Nov 08 23:19:11 2009 +0000 @@ -1,3 +1,8 @@ +2009-11-08 Chong Yidong + + * searching.texi (Char Classes): Note that [:upper:] and [:lower:] + are affected by case-fold-search (Bug#4483). + 2009-11-02 Chong Yidong * minibuf.texi (Reading File Names): Note that read-file-name may diff -r b3189a049bbf -r 68729184628a doc/lispref/searching.texi --- a/doc/lispref/searching.texi Sun Nov 08 23:05:49 2009 +0000 +++ b/doc/lispref/searching.texi Sun Nov 08 23:19:11 2009 +0000 @@ -539,8 +539,9 @@ This matches graphic characters---everything except @acronym{ASCII} control characters, space, and the delete character. @item [:lower:] -This matches any lower-case letter, as determined by -the current case table (@pxref{Case Tables}). +This matches any lower-case letter, as determined by the current case +table (@pxref{Case Tables}). If @code{case-fold-search} is +non-@code{nil}, this also matches any upper-case letter. @item [:multibyte:] This matches any multibyte character (@pxref{Text Representations}). @item [:nonascii:] @@ -557,8 +558,9 @@ @item [:unibyte:] This matches any unibyte character (@pxref{Text Representations}). @item [:upper:] -This matches any upper-case letter, as determined by -the current case table (@pxref{Case Tables}). +This matches any upper-case letter, as determined by the current case +table (@pxref{Case Tables}). If @code{case-fold-search} is +non-@code{nil}, this also matches any lower-case letter. @item [:word:] This matches any character that has word syntax (@pxref{Syntax Class Table}).