From: Chong Yidong Date: Sun, 28 Dec 2008 04:19:34 +0000 (+0000) Subject: (rx): Doc fix. X-Git-Tag: emacs-pretest-23.0.90~843 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=baac7510a4417045d20e0e84ab1dff327348f456;p=emacs.git (rx): Doc fix. --- 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." (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.