Mercurial > emacs
changeset 81091:af6a790a5cc8
Nikolaj Schumacher <n_schumacher at web.de> (tiny change)
(rx): Doc fix.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 29 May 2007 00:52:44 +0000 |
parents | a05403b54fb5 |
children | 74defab53a8c |
files | lisp/emacs-lisp/rx.el |
diffstat | 1 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/rx.el Tue May 29 00:47:12 2007 +0000 +++ b/lisp/emacs-lisp/rx.el Tue May 29 00:52:44 2007 +0000 @@ -725,8 +725,7 @@ matches the empty string, but only at point. `word-start', `bow' - matches the empty string, but only at the beginning or end of a - word. + matches the empty string, but only at the beginning of a word. `word-end', `eow' matches the empty string, but only at the end of a word. @@ -740,6 +739,12 @@ matches the empty string, but not at the beginning or end of a word. +`symbol-start' + matches the empty string, but only at the beginning of a symbol. + +`symbol-end' + matches the empty string, but only at the end of a symbol. + `digit', `numeric', `num' matches 0 through 9.