aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-05-19 18:50:38 +0000
committerStefan Monnier2004-05-19 18:50:38 +0000
commit6ccc7fbc5de4e8f6e058c6dd2553a86bb6ef9843 (patch)
treeee9efa1ead76efbeba219f9becf82a418062ffeb
parente4ad9cf1999c5a0a2b8eb9c6df0e3bfcfbe58199 (diff)
downloademacs-6ccc7fbc5de4e8f6e058c6dd2553a86bb6ef9843.tar.gz
emacs-6ccc7fbc5de4e8f6e058c6dd2553a86bb6ef9843.zip
Describe the new \_< and \_> operators.
-rw-r--r--man/search.texi12
1 files changed, 12 insertions, 0 deletions
diff --git a/man/search.texi b/man/search.texi
index 303074dcf0d..fbc8d24bf23 100644
--- a/man/search.texi
+++ b/man/search.texi
@@ -724,6 +724,18 @@ determines which characters these are. @xref{Syntax}.
724@item \W 724@item \W
725matches any character that is not a word-constituent. 725matches any character that is not a word-constituent.
726 726
727@item \_<
728matches the empty string, but only at the beginning of a symbol. A
729symbol is a sequence of one or more word or symbol constituent
730characters. @samp{\_<} matches at the beginning of the buffer only if
731a symbol-constituent character follows.
732
733@item \_>
734matches the empty string, but only at the end of a symbol. A symbol
735is a sequence of one or more word or symbol constituent characters.
736@samp{\_>} matches at the end of the buffer only if the contents end
737with a symbol-constituent character.
738
727@item \s@var{c} 739@item \s@var{c}
728matches any character whose syntax is @var{c}. Here @var{c} is a 740matches any character whose syntax is @var{c}. Here @var{c} is a
729character that designates a particular syntax class: thus, @samp{w} 741character that designates a particular syntax class: thus, @samp{w}