]> code.delx.au - gnu-emacs/blobdiff - doc/lispref/searching.texi
Document changes to windows code.
[gnu-emacs] / doc / lispref / searching.texi
index 6272301dbb475c1228c01ae415a1d2323d6a2c65..fe7c805c6f79073d7b8721c87432cc54a595891f 100644 (file)
@@ -717,11 +717,15 @@ the characters that stand for them.
 @cindex @samp{\S} in regexp
 matches any character whose syntax is not @var{code}.
 
+@cindex category, regexp search for
 @item \c@var{c}
 matches any character whose category is @var{c}.  Here @var{c} is a
 character that represents a category: thus, @samp{c} for Chinese
 characters or @samp{g} for Greek characters in the standard category
-table.
+table.  You can see the list of all the currently defined categories
+with @kbd{M-x describe-categories @key{RET}}.  You can also define
+your own categories in addition to the standard ones using the
+@code{define-category} function (@pxref{Categories}).
 
 @item \C@var{c}
 matches any character whose category is not @var{c}.