Mercurial > emacs
changeset 100727:7ab2f3422f46
(rx): Doc fix.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sun, 28 Dec 2008 04:19:34 +0000 |
parents | e80f47b0d928 |
children | 11101e16e203 |
files | lisp/emacs-lisp/rx.el |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/rx.el Sun Dec 28 04:19:03 2008 +0000 +++ b/lisp/emacs-lisp/rx.el Sun Dec 28 04:19:34 2008 +0000 @@ -836,7 +836,10 @@ (defmacro rx (&rest regexps) "Translate regular expressions REGEXPS in sexp form to a regexp string. REGEXPS is a non-empty sequence of forms of the sort listed below. -See also `rx-to-string' for how to do such a translation at run-time. + +Note that `rx' is a Lisp macro; when used in a Lisp program being + compiled, the translation is performed by the compiler. +See `rx-to-string' for how to do such a translation at run-time. The following are valid subforms of regular expressions in sexp notation.