aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2005-10-17 06:45:48 +0000
committerJuri Linkov2005-10-17 06:45:48 +0000
commit3fa2da7ac8ad36e5b4febb6d1ed8713081e9d966 (patch)
tree186a2869d7f14980acf8fb8a23cb8f8362c5b939
parent4049cdfac445bbd74d583ed5d01bd9e3213708fe (diff)
downloademacs-3fa2da7ac8ad36e5b4febb6d1ed8713081e9d966.tar.gz
emacs-3fa2da7ac8ad36e5b4febb6d1ed8713081e9d966.zip
(Eval During Compile, Compiler Errors):
Replace `...' with `@dots{}' in `@defmac' and `@defspec'.
-rw-r--r--lispref/compile.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/compile.texi b/lispref/compile.texi
index 79ac366c27d..f8fd3f72b9a 100644
--- a/lispref/compile.texi
+++ b/lispref/compile.texi
@@ -401,7 +401,7 @@ it does nothing. It always returns @var{function}.
401 These features permit you to write code to be evaluated during 401 These features permit you to write code to be evaluated during
402compilation of a program. 402compilation of a program.
403 403
404@defspec eval-and-compile body 404@defspec eval-and-compile body@dots{}
405This form marks @var{body} to be evaluated both when you compile the 405This form marks @var{body} to be evaluated both when you compile the
406containing code and when you run it (whether compiled or not). 406containing code and when you run it (whether compiled or not).
407 407
@@ -410,7 +410,7 @@ and referring to that file with @code{require}. That method is
410preferable when @var{body} is large. 410preferable when @var{body} is large.
411@end defspec 411@end defspec
412 412
413@defspec eval-when-compile body 413@defspec eval-when-compile body@dots{}
414This form marks @var{body} to be evaluated at compile time but not when 414This form marks @var{body} to be evaluated at compile time but not when
415the compiled program is loaded. The result of evaluation by the 415the compiled program is loaded. The result of evaluation by the
416compiler becomes a constant which appears in the compiled program. If 416compiler becomes a constant which appears in the compiled program. If
@@ -470,7 +470,7 @@ The reference to @var{variable} must be in the @var{then-form} of the
470@c This is implemented with a defun, but conceptually it is 470@c This is implemented with a defun, but conceptually it is
471@c a special form. 471@c a special form.
472 472
473@defspec with-no-warnings body... 473@defspec with-no-warnings body@dots{}
474In execution, this is equivalent to @code{(progn @var{body}...)}, 474In execution, this is equivalent to @code{(progn @var{body}...)},
475but the compiler does not issue warnings for anything that occurs 475but the compiler does not issue warnings for anything that occurs
476inside @var{body}. 476inside @var{body}.