diff options
| author | Juri Linkov | 2005-10-17 06:45:48 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-10-17 06:45:48 +0000 |
| commit | 3fa2da7ac8ad36e5b4febb6d1ed8713081e9d966 (patch) | |
| tree | 186a2869d7f14980acf8fb8a23cb8f8362c5b939 | |
| parent | 4049cdfac445bbd74d583ed5d01bd9e3213708fe (diff) | |
| download | emacs-3fa2da7ac8ad36e5b4febb6d1ed8713081e9d966.tar.gz emacs-3fa2da7ac8ad36e5b4febb6d1ed8713081e9d966.zip | |
(Eval During Compile, Compiler Errors):
Replace `...' with `@dots{}' in `@defmac' and `@defspec'.
| -rw-r--r-- | lispref/compile.texi | 6 |
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 |
| 402 | compilation of a program. | 402 | compilation of a program. |
| 403 | 403 | ||
| 404 | @defspec eval-and-compile body | 404 | @defspec eval-and-compile body@dots{} |
| 405 | This form marks @var{body} to be evaluated both when you compile the | 405 | This form marks @var{body} to be evaluated both when you compile the |
| 406 | containing code and when you run it (whether compiled or not). | 406 | containing 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 | |||
| 410 | preferable when @var{body} is large. | 410 | preferable 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{} |
| 414 | This form marks @var{body} to be evaluated at compile time but not when | 414 | This form marks @var{body} to be evaluated at compile time but not when |
| 415 | the compiled program is loaded. The result of evaluation by the | 415 | the compiled program is loaded. The result of evaluation by the |
| 416 | compiler becomes a constant which appears in the compiled program. If | 416 | compiler 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{} |
| 474 | In execution, this is equivalent to @code{(progn @var{body}...)}, | 474 | In execution, this is equivalent to @code{(progn @var{body}...)}, |
| 475 | but the compiler does not issue warnings for anything that occurs | 475 | but the compiler does not issue warnings for anything that occurs |
| 476 | inside @var{body}. | 476 | inside @var{body}. |