diff options
| author | Chong Yidong | 2008-12-28 04:19:34 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-12-28 04:19:34 +0000 |
| commit | baac7510a4417045d20e0e84ab1dff327348f456 (patch) | |
| tree | 14fb41726c16d607f17b0728ed4643cebb93b9a0 | |
| parent | 5fa77a6a7a2672de2ec66dc55e40d1bad09968a3 (diff) | |
| download | emacs-baac7510a4417045d20e0e84ab1dff327348f456.tar.gz emacs-baac7510a4417045d20e0e84ab1dff327348f456.zip | |
(rx): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/rx.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index 7f3793f05ac..a56e95dfa95 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el | |||
| @@ -836,7 +836,10 @@ NO-GROUP non-nil means don't put shy groups around the result." | |||
| 836 | (defmacro rx (&rest regexps) | 836 | (defmacro rx (&rest regexps) |
| 837 | "Translate regular expressions REGEXPS in sexp form to a regexp string. | 837 | "Translate regular expressions REGEXPS in sexp form to a regexp string. |
| 838 | REGEXPS is a non-empty sequence of forms of the sort listed below. | 838 | REGEXPS is a non-empty sequence of forms of the sort listed below. |
| 839 | See also `rx-to-string' for how to do such a translation at run-time. | 839 | |
| 840 | Note that `rx' is a Lisp macro; when used in a Lisp program being | ||
| 841 | compiled, the translation is performed by the compiler. | ||
| 842 | See `rx-to-string' for how to do such a translation at run-time. | ||
| 840 | 843 | ||
| 841 | The following are valid subforms of regular expressions in sexp | 844 | The following are valid subforms of regular expressions in sexp |
| 842 | notation. | 845 | notation. |