aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/functions.texi4
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})
1584This can only be used for functions, and tells the compiler to use 1584This 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
1586function, of the form @code{(@var{function} @var{args}@dots)}, the macro 1586function, of the form @code{(@var{function} @var{args}@dots{})}, the macro
1587expander will call @var{expander} with that form as well as with 1587expander 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
1589instead of the function call, or it can return just the form unchanged, 1589instead of the function call, or it can return just the form unchanged,
1590to indicate that the function call should be left alone. @var{expander} can 1590to indicate that the function call should be left alone. @var{expander} can
1591be a symbol, or it can be a form @code{(lambda (@var{arg}) @var{body})} in 1591be a symbol, or it can be a form @code{(lambda (@var{arg}) @var{body})} in