aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-01-31 19:12:18 +0000
committerDave Love2001-01-31 19:12:18 +0000
commita8b5bbefb32bb32ea7d06e0cb847407c6906ed04 (patch)
tree84d54112a9330a8b891863fb2326c6ede511c3ed
parenta57092e8ca055ec04aba86385a967eed33b6673a (diff)
downloademacs-a8b5bbefb32bb32ea7d06e0cb847407c6906ed04.tar.gz
emacs-a8b5bbefb32bb32ea7d06e0cb847407c6906ed04.zip
(Regexp Backslash): categories.
-rw-r--r--lispref/searching.texi9
1 files changed, 9 insertions, 0 deletions
diff --git a/lispref/searching.texi b/lispref/searching.texi
index 7274209adb7..e23be33e440 100644
--- a/lispref/searching.texi
+++ b/lispref/searching.texi
@@ -585,6 +585,15 @@ the characters that stand for them.
585@item \S@var{code} 585@item \S@var{code}
586@cindex @samp{\S} in regexp 586@cindex @samp{\S} in regexp
587matches any character whose syntax is not @var{code}. 587matches any character whose syntax is not @var{code}.
588
589@item \c@var{c}
590matches any character whose category is @var{c}. Here @var{c} is a
591character that represents a category: thus, @samp{c} for Chinese
592characters or @samp{g} for Greek characters in the standard category
593table.
594
595@item \C@var{c}
596matches any character whose category is not @var{c}.
588@end table 597@end table
589 598
590 The following regular expression constructs match the empty string---that is, 599 The following regular expression constructs match the empty string---that is,