* doc/lispref/macros.texi (Defining Macros): Prefer "function" to "lambda

expression".

Fixes: debbugs:15296
This commit is contained in:
Stefan Monnier 2013-09-08 14:01:25 -04:00
parent af9ff9e805
commit eb31a86cb2
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2013-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
* macros.texi (Defining Macros): Prefer "function" to "lambda
expression" (bug#15296).
2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
* Makefile.in (SHELL): Now @SHELL@, not /bin/sh,

View file

@ -191,8 +191,8 @@ During Compile}).
@section Defining Macros
A Lisp macro object is a list whose @sc{car} is @code{macro}, and
whose @sc{cdr} is a lambda expression. Expansion of the macro works
by applying the lambda expression (with @code{apply}) to the list of
whose @sc{cdr} is a function. Expansion of the macro works
by applying the function (with @code{apply}) to the list of
@emph{unevaluated} arguments from the macro call.
It is possible to use an anonymous Lisp macro just like an anonymous