comparison man/search.texi @ 58434:b458d6bca4fe

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 22 Nov 2004 20:38:40 +0000
parents 2ad6f5610930
children cb59b8d0f534
comparison
equal deleted inserted replaced
58433:b34b9f928699 58434:b458d6bca4fe
1 @c This is part of the Emacs manual. 1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000, 2001, 2004 2 @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, 2004
3 @c Free Software Foundation, Inc. 3 @c Free Software Foundation, Inc.
4 @c See file emacs.texi for copying conditions. 4 @c See file emacs.texi for copying conditions.
5 @node Search, Fixit, Display, Top 5 @node Search, Fixit, Display, Top
6 @chapter Searching and Replacement 6 @chapter Searching and Replacement
7 @cindex searching 7 @cindex searching
741 741
742 @item \W 742 @item \W
743 matches any character that is not a word-constituent. 743 matches any character that is not a word-constituent.
744 744
745 @item \_< 745 @item \_<
746 matches the empty string, but only at the beginning of a symbol. A 746 matches the empty string, but only at the beginning of a symbol.
747 symbol is a sequence of one or more word or symbol constituent 747 A symbol is a sequence of one or more symbol-constituent characters.
748 characters. @samp{\_<} matches at the beginning of the buffer only if 748 A symbol-constituent character is a character whose syntax is either
749 a symbol-constituent character follows. 749 @vsamp{w} or @samp{_}. @samp{\_<} matches at the beginning of the
750 buffer only if a symbol-constituent character follows.
750 751
751 @item \_> 752 @item \_>
752 matches the empty string, but only at the end of a symbol. @samp{\_>} 753 matches the empty string, but only at the end of a symbol. @samp{\_>}
753 matches at the end of the buffer only if the contents end with a 754 matches at the end of the buffer only if the contents end with a
754 symbol-constituent character. 755 symbol-constituent character.