From: Juanma Barranquero Date: Sat, 22 Feb 2014 03:46:18 +0000 (+0100) Subject: doc/lispref/functions.texi (Declare Form): Fix typo in previous change. X-Git-Tag: emacs-24.3.90~173^2^2~16 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d994ff7c0df6f2a849d83b36e85411afebcc5927;p=emacs.git doc/lispref/functions.texi (Declare Form): Fix typo in previous change. --- 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. @item (compiler-macro @var{expander}) This can only be used for functions, and tells the compiler to use @var{expander} as an optimization function. When encountering a call to the -function, of the form @code{(@var{function} @var{args}@dots)}, the macro +function, of the form @code{(@var{function} @var{args}@dots{})}, the macro expander will call @var{expander} with that form as well as with -@var{args}@dots, and @var{expander} can either return a new expression to use +@var{args}@dots{}, and @var{expander} can either return a new expression to use instead of the function call, or it can return just the form unchanged, to indicate that the function call should be left alone. @var{expander} can be a symbol, or it can be a form @code{(lambda (@var{arg}) @var{body})} in