* doc/lispref/macros.texi (Defining Macros): Prefer "function" to "lambda
expression". Fixes: debbugs:15296
This commit is contained in:
parent
af9ff9e805
commit
eb31a86cb2
2 changed files with 7 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue