# HG changeset patch # User Glenn Morris # Date 1180399928 0 # Node ID d858d80ae6097c4c917167ac12ccfbd50e0b5a55 # Parent 31144bf8323411087d77c235c35628b1e93ecf95 Nikolaj Schumacher (tiny change) (rx): Doc fix. diff -r 31144bf83234 -r d858d80ae609 lisp/emacs-lisp/rx.el --- a/lisp/emacs-lisp/rx.el Tue May 29 00:51:41 2007 +0000 +++ b/lisp/emacs-lisp/rx.el Tue May 29 00:52:08 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.