diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-11-08 23:19:11 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-11-08 23:19:11 +0000 |
commit | 4359a806d0afe62a154f1aedde8fbc93f261de7c (patch) | |
tree | 3543988d1e2b1542f96df0b829f2181b60a0c1be /doc | |
parent | 15207e7467fad49514adaa1cf28a1049251281e2 (diff) | |
download | emacs-4359a806d0afe62a154f1aedde8fbc93f261de7c.tar.gz |
* searching.texi (Char Classes): Note that [:upper:] and [:lower:]
are affected by case-fold-search (Bug#4483).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
-rw-r--r-- | doc/lispref/searching.texi | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index e455d15edc0..beb3cff645c 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,8 @@ +2009-11-08 Chong Yidong <cyd@stupidchicken.com> + + * searching.texi (Char Classes): Note that [:upper:] and [:lower:] + are affected by case-fold-search (Bug#4483). + 2009-11-02 Chong Yidong <cyd@stupidchicken.com> * minibuf.texi (Reading File Names): Note that read-file-name may diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 60b807c8ebf..c852b7e814c 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi @@ -539,8 +539,9 @@ matches any digit, as well as @samp{+} and @samp{-}. 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 @@ This matches any character that has whitespace syntax @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}). |