User: stephent
Date: 05/02/23 16:33:38
Modified: xemacs/man/lispref searching.texi
Log:
document \c <87650jz411.fsf(a)tleepslib.sk.tsukuba.ac.jp>
Revision Changes Path
1.290 +6 -1 XEmacs/xemacs/man/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/ChangeLog,v
retrieving revision 1.289
retrieving revision 1.290
diff -u -r1.289 -r1.290
--- ChangeLog 2005/02/22 07:16:11 1.289
+++ ChangeLog 2005/02/23 15:33:32 1.290
@@ -1,3 +1,9 @@
+2005-02-23 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * lispref/searching.texi (Syntax of Regexps):
+ Mention the \c and \C regular expression constructs; cross
+ reference to the Category Table documentation.
+
2005-02-22 Stephen J. Turnbull <stephen(a)xemacs.org>
* internals/internals.texi (The version.sh Script): New node.
@@ -8,7 +14,6 @@
Add or update references to the version.sh node and/or file.
(XEmacs from the Perspective of Building): Improve text.
-
2005-02-19 Stephen J. Turnbull <stephen(a)xemacs.org>
1.13 +13 -0 XEmacs/xemacs/man/lispref/searching.texi
Index: searching.texi
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/lispref/searching.texi,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- searching.texi 2004/09/08 10:32:55 1.12
+++ searching.texi 2005/02/23 15:33:38 1.13
@@ -516,6 +516,19 @@
@item \S@var{code}
@cindex @samp{\S} in regexp
matches any character whose syntax is not @var{code}.
+
+@item \c@var{category}
+@cindex @samp{\c} in regexp
+matches any character in @var{category}. Only available under Mule,
+categories, and category tables, are further described in @ref{Category
+Tables}. They are a mechanism for constructing classes of characters
+that can be local to a buffer, and that do not require complicated []
+expressions every time they are referenced.
+
+@item \C@var{category}
+@cindex @samp{\C} in regexp
+matches any character outside @var{category}. @xref{Category Tables},
+again, and note that this is only available under Mule.
@end table
The following regular expression constructs match the empty string---that is,