diff options
| author | Glenn Morris | 2008-06-04 07:12:44 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-06-04 07:12:44 +0000 |
| commit | 07e810660ae7d7899ddfd367a24da788c1920838 (patch) | |
| tree | 03096beceda7b67080f5eab05f41c0c73044dfd2 | |
| parent | f20186fdf0c6fef3b63934c7c36a5c814f9f7c56 (diff) | |
| download | emacs-07e810660ae7d7899ddfd367a24da788c1920838.tar.gz emacs-07e810660ae7d7899ddfd367a24da788c1920838.zip | |
Trent W. Buck <trentbuck at gmail.com> (tiny change)
(rx): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/rx.el | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 67b3ec53497..21c2db58798 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-06-04 Trent W. Buck <trentbuck@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * emacs-lisp/rx.el (rx): Doc fix. | ||
| 4 | |||
| 1 | 2008-06-04 Markus Triska <markus.triska@gmx.at> | 5 | 2008-06-04 Markus Triska <markus.triska@gmx.at> |
| 2 | 6 | ||
| 3 | * image-mode.el (image-mode-map): Add doc-view-inspired bindings. | 7 | * image-mode.el (image-mode-map): Add doc-view-inspired bindings. |
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index 564bd752641..297bb1a6460 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el | |||
| @@ -944,14 +944,8 @@ enclosed in `(and ...)'. | |||
| 944 | matches N to M occurrences. | 944 | matches N to M occurrences. |
| 945 | 945 | ||
| 946 | `(backref N)' | 946 | `(backref N)' |
| 947 | matches what was matched previously by submatch N. | ||
| 948 | |||
| 949 | `(backref N)' | ||
| 950 | matches what was matched previously by submatch N. | 947 | matches what was matched previously by submatch N. |
| 951 | 948 | ||
| 952 | `(backref N)' | ||
| 953 | matches what was matched previously by submatch N. | ||
| 954 | |||
| 955 | `(eval FORM)' | 949 | `(eval FORM)' |
| 956 | evaluate FORM and insert result. If result is a string, | 950 | evaluate FORM and insert result. If result is a string, |
| 957 | `regexp-quote' it. | 951 | `regexp-quote' it. |