aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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,