From: Glenn Morris Date: Tue, 29 May 2007 00:53:54 +0000 (+0000) Subject: Nikolaj Schumacher (tiny change) X-Git-Tag: emacs-pretest-23.0.90~12540 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929;p=emacs.git Nikolaj Schumacher (tiny change) (rx): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c3c8aaabad7..e015e9b180c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-05-29 Nikolaj Schumacher (tiny change) + + * emacs-lisp/rx.el (rx): Doc fix. + 2007-05-28 Juanma Barranquero * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring. 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.