diff options
| -rw-r--r-- | man/search.texi | 12 |
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 |
| 725 | matches any character that is not a word-constituent. | 725 | matches any character that is not a word-constituent. |
| 726 | 726 | ||
| 727 | @item \_< | ||
| 728 | matches the empty string, but only at the beginning of a symbol. A | ||
| 729 | symbol is a sequence of one or more word or symbol constituent | ||
| 730 | characters. @samp{\_<} matches at the beginning of the buffer only if | ||
| 731 | a symbol-constituent character follows. | ||
| 732 | |||
| 733 | @item \_> | ||
| 734 | matches the empty string, but only at the end of a symbol. A symbol | ||
| 735 | is 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 | ||
| 737 | with a symbol-constituent character. | ||
| 738 | |||
| 727 | @item \s@var{c} | 739 | @item \s@var{c} |
| 728 | matches any character whose syntax is @var{c}. Here @var{c} is a | 740 | matches any character whose syntax is @var{c}. Here @var{c} is a |
| 729 | character that designates a particular syntax class: thus, @samp{w} | 741 | character that designates a particular syntax class: thus, @samp{w} |