]> code.delx.au - gnu-emacs/commitdiff
* doc/lispref/macros.texi (Defining Macros): Prefer "function" to "lambda
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 8 Sep 2013 18:01:25 +0000 (14:01 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 8 Sep 2013 18:01:25 +0000 (14:01 -0400)
expression".

Fixes: debbugs:15296
doc/lispref/ChangeLog
doc/lispref/macros.texi

index 8b5aa65ff96a713baa4bee0e3aadb108e84af239..145d595b1d21752492de4d96392c6bf43a6d5c3c 100644 (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,
index 5520bbbd1dfa7bffd5ea14d64fab339adb4f81e5..a2526f383aa1c9c7c3eeddf45689a4882d4601f2 100644 (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