diff options
author | Glenn Morris <rgm@gnu.org> | 2007-05-29 00:53:54 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-05-29 00:53:54 +0000 |
commit | 5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929 (patch) | |
tree | e07daa14b0e81e107fd6c780292f30231e9f1d90 /lisp/emacs-lisp | |
parent | 73187b2613d438a786dfa46b81a70595da32f154 (diff) | |
download | emacs-5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929.tar.gz emacs-5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929.tar.bz2 emacs-5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929.zip |
Nikolaj Schumacher <n_schumacher at web.de> (tiny change)
(rx): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/rx.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index 39134443d86..54f88ba3ea5 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -725,8 +725,7 @@ CHAR 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 @@ CHAR 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. |