emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/doc/lispref ChangeLog searching.texi


From: Chong Yidong
Subject: [Emacs-diffs] emacs/doc/lispref ChangeLog searching.texi
Date: Sun, 08 Nov 2009 23:19:11 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/11/08 23:19:11

Modified files:
        doc/lispref    : ChangeLog searching.texi 

Log message:
        * searching.texi (Char Classes): Note that [:upper:] and [:lower:]
        are affected by case-fold-search (Bug#4483).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/ChangeLog?cvsroot=emacs&r1=1.346&r2=1.347
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/lispref/searching.texi?cvsroot=emacs&r1=1.18&r2=1.19

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/ChangeLog,v
retrieving revision 1.346
retrieving revision 1.347
diff -u -b -r1.346 -r1.347
--- ChangeLog   2 Nov 2009 02:30:04 -0000       1.346
+++ ChangeLog   8 Nov 2009 23:19:11 -0000       1.347
@@ -1,3 +1,8 @@
+2009-11-08  Chong Yidong  <address@hidden>
+
+       * searching.texi (Char Classes): Note that [:upper:] and [:lower:]
+       are affected by case-fold-search (Bug#4483).
+
 2009-11-02  Chong Yidong  <address@hidden>
 
        * minibuf.texi (Reading File Names): Note that read-file-name may

Index: searching.texi
===================================================================
RCS file: /sources/emacs/emacs/doc/lispref/searching.texi,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- searching.texi      27 Aug 2009 04:24:02 -0000      1.18
+++ searching.texi      8 Nov 2009 23:19:11 -0000       1.19
@@ -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
address@hidden, 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
address@hidden, this also matches any lower-case letter.
 @item [:word:]
 This matches any character that has word syntax (@pxref{Syntax Class
 Table}).




reply via email to

[Prev in Thread] Current Thread [Next in Thread]