]> git.eshelyaron.com Git - emacs.git/commitdiff
(eval-when-compile): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 May 2005 15:39:56 +0000 (15:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 May 2005 15:39:56 +0000 (15:39 +0000)
lisp/emacs-lisp/byte-run.el

index 1472d576e49514e99cec160c639937a9bf796644..7fc01901cfe4973e62499c1e0d4a197961f78121 100644 (file)
@@ -175,8 +175,9 @@ If you think you need this, you're probably making a mistake somewhere."
 ;;; byte-compile-macro-environment.
 
 (defmacro eval-when-compile (&rest body)
-  "Like `progn', but evaluates the body at compile time.
-The result of the body appears to the compiler as a quoted constant."
+  "Like `progn', but evaluates the body at compile time if you're compiling.
+Thus, the result of the body appears to the compiler as a quoted constant.
+In interpreted code, this is entirely equivalent to `progn'."
   (declare (debug t) (indent 0))
   ;; Not necessary because we have it in b-c-initial-macro-environment
   ;; (list 'quote (eval (cons 'progn body)))