]> git.eshelyaron.com Git - emacs.git/commitdiff
Nikolaj Schumacher <n_schumacher at web.de> (tiny change)
authorGlenn Morris <rgm@gnu.org>
Tue, 29 May 2007 00:53:54 +0000 (00:53 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 29 May 2007 00:53:54 +0000 (00:53 +0000)
(rx): Doc fix.

lisp/ChangeLog
lisp/emacs-lisp/rx.el

index c3c8aaabad7d40a619ca7bbcd42329beb07199eb..e015e9b180c64c91aae22228d1c92985136fd052 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-29  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
+
+       * emacs-lisp/rx.el (rx): Doc fix.
+
 2007-05-28  Juanma Barranquero  <lekktu@gmail.com>
 
        * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring.
index 39134443d86b64b825e93ce524c2ec85c3f02909..54f88ba3ea5259c11c7b7a0aeee09921e778e06a 100644 (file)
@@ -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.