diff options
| author | Luc Teirlinck | 2004-07-16 18:38:38 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-07-16 18:38:38 +0000 |
| commit | 9a7e97c6fb5ad76aacf0f75a6b30503f29fddd54 (patch) | |
| tree | 16c6d87f1c3d915ce92b351dee69ae2984bcda0c | |
| parent | aa0e4da88dc6c85dee2ca78cbf1dfdf5f43c557d (diff) | |
| download | emacs-9a7e97c6fb5ad76aacf0f75a6b30503f29fddd54.tar.gz emacs-9a7e97c6fb5ad76aacf0f75a6b30503f29fddd54.zip | |
(Regexp Backslash): Document new \_< and \_> operators.
From Jim Blandy.
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/searching.texi | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 2c02841fae7..a8c9c295a83 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-07-16 Jim Blandy <jimb@redhat.com> | ||
| 2 | |||
| 3 | * searching.texi (Regexp Backslash): Document new \_< and \_> | ||
| 4 | operators. | ||
| 5 | |||
| 1 | 2004-07-16 Juanma Barranquero <lektu@terra.es> | 6 | 2004-07-16 Juanma Barranquero <lektu@terra.es> |
| 2 | 7 | ||
| 3 | * display.texi (Images): Fix Texinfo usage. | 8 | * display.texi (Images): Fix Texinfo usage. |
diff --git a/lispref/searching.texi b/lispref/searching.texi index 4a2703fd640..fd0d0e172a0 100644 --- a/lispref/searching.texi +++ b/lispref/searching.texi | |||
| @@ -666,6 +666,19 @@ word-constituent character follows. | |||
| 666 | matches the empty string, but only at the end of a word. @samp{\>} | 666 | matches the empty string, but only at the end of a word. @samp{\>} |
| 667 | matches at the end of the buffer (or string) only if the contents end | 667 | matches at the end of the buffer (or string) only if the contents end |
| 668 | with a word-constituent character. | 668 | with a word-constituent character. |
| 669 | |||
| 670 | @item \_< | ||
| 671 | @cindex @samp{\_<} in regexp | ||
| 672 | matches the empty string, but only at the beginning of a symbol. A | ||
| 673 | symbol is a sequence of one or more word or symbol constituent | ||
| 674 | characters. @samp{\_<} matches at the beginning of the buffer (or | ||
| 675 | string) only if a symbol-constituent character follows. | ||
| 676 | |||
| 677 | @item \_> | ||
| 678 | @cindex @samp{\_>} in regexp | ||
| 679 | matches the empty string, but only at the end of a symbol. @samp{\_>} | ||
| 680 | matches at the end of the buffer (or string) only if the contents end | ||
| 681 | with a symbol-constituent character. | ||
| 669 | @end table | 682 | @end table |
| 670 | 683 | ||
| 671 | @kindex invalid-regexp | 684 | @kindex invalid-regexp |