aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-05-29 00:53:54 +0000
committerGlenn Morris2007-05-29 00:53:54 +0000
commit5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929 (patch)
treee07daa14b0e81e107fd6c780292f30231e9f1d90
parent73187b2613d438a786dfa46b81a70595da32f154 (diff)
downloademacs-5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929.tar.gz
emacs-5e3fc9eb8e53a35eb0a8b87c77187a4711eb9929.zip
Nikolaj Schumacher <n_schumacher at web.de> (tiny change)
(rx): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/rx.el9
2 files changed, 11 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c3c8aaabad7..e015e9b180c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-05-29 Nikolaj Schumacher <n_schumacher@web.de> (tiny change)
2
3 * emacs-lisp/rx.el (rx): Doc fix.
4
12007-05-28 Juanma Barranquero <lekktu@gmail.com> 52007-05-28 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * progmodes/idlwave.el (idlwave-routines): Fix typo in docstring. 7 * 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
725 matches the empty string, but only at point. 725 matches the empty string, but only at point.
726 726
727`word-start', `bow' 727`word-start', `bow'
728 matches the empty string, but only at the beginning or end of a 728 matches the empty string, but only at the beginning of a word.
729 word.
730 729
731`word-end', `eow' 730`word-end', `eow'
732 matches the empty string, but only at the end of a word. 731 matches the empty string, but only at the end of a word.
@@ -740,6 +739,12 @@ CHAR
740 matches the empty string, but not at the beginning or end of a 739 matches the empty string, but not at the beginning or end of a
741 word. 740 word.
742 741
742`symbol-start'
743 matches the empty string, but only at the beginning of a symbol.
744
745`symbol-end'
746 matches the empty string, but only at the end of a symbol.
747
743`digit', `numeric', `num' 748`digit', `numeric', `num'
744 matches 0 through 9. 749 matches 0 through 9.
745 750