]> git.eshelyaron.com Git - emacs.git/commitdiff
(rx): Doc fix.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 28 Dec 2008 04:19:34 +0000 (04:19 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 28 Dec 2008 04:19:34 +0000 (04:19 +0000)
lisp/emacs-lisp/rx.el

index 7f3793f05ac2612a2fdf1a05797c121698950693..a56e95dfa95b49563d71879b19a3b4b20a488fbf 100644 (file)
@@ -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.