diff options
| -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 |