diff options
| author | Juanma Barranquero | 2014-02-22 04:46:18 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2014-02-22 04:46:18 +0100 |
| commit | d994ff7c0df6f2a849d83b36e85411afebcc5927 (patch) | |
| tree | fbb3beaf7ddefcd5fa6f7582f81805cda905987c /doc | |
| parent | add6de1c9474d8679ac7472456d8aac0ad9a7615 (diff) | |
| download | emacs-d994ff7c0df6f2a849d83b36e85411afebcc5927.tar.gz emacs-d994ff7c0df6f2a849d83b36e85411afebcc5927.zip | |
doc/lispref/functions.texi (Declare Form): Fix typo in previous change.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/functions.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index b2bd22e9ffd..b38eab2649a 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -1583,9 +1583,9 @@ made obsolete. | |||
| 1583 | @item (compiler-macro @var{expander}) | 1583 | @item (compiler-macro @var{expander}) |
| 1584 | This can only be used for functions, and tells the compiler to use | 1584 | This can only be used for functions, and tells the compiler to use |
| 1585 | @var{expander} as an optimization function. When encountering a call to the | 1585 | @var{expander} as an optimization function. When encountering a call to the |
| 1586 | function, of the form @code{(@var{function} @var{args}@dots)}, the macro | 1586 | function, of the form @code{(@var{function} @var{args}@dots{})}, the macro |
| 1587 | expander will call @var{expander} with that form as well as with | 1587 | expander will call @var{expander} with that form as well as with |
| 1588 | @var{args}@dots, and @var{expander} can either return a new expression to use | 1588 | @var{args}@dots{}, and @var{expander} can either return a new expression to use |
| 1589 | instead of the function call, or it can return just the form unchanged, | 1589 | instead of the function call, or it can return just the form unchanged, |
| 1590 | to indicate that the function call should be left alone. @var{expander} can | 1590 | to indicate that the function call should be left alone. @var{expander} can |
| 1591 | be a symbol, or it can be a form @code{(lambda (@var{arg}) @var{body})} in | 1591 | be a symbol, or it can be a form @code{(lambda (@var{arg}) @var{body})} in |