aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2013-09-08 14:01:25 -0400
committerStefan Monnier2013-09-08 14:01:25 -0400
commiteb31a86cb21c2f19a34830d3b7cdf7a087be826b (patch)
tree74368d4916f4576c51be77eec1c240054a2b299d
parentaf9ff9e8058a9034b522d5b77cb7828cc6c137b4 (diff)
downloademacs-eb31a86cb21c2f19a34830d3b7cdf7a087be826b.tar.gz
emacs-eb31a86cb21c2f19a34830d3b7cdf7a087be826b.zip
* doc/lispref/macros.texi (Defining Macros): Prefer "function" to "lambda
expression". Fixes: debbugs:15296
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/macros.texi4
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 8b5aa65ff96..145d595b1d2 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12013-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * macros.texi (Defining Macros): Prefer "function" to "lambda
4 expression" (bug#15296).
5
12013-08-28 Paul Eggert <eggert@cs.ucla.edu> 62013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh, 8 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
diff --git a/doc/lispref/macros.texi b/doc/lispref/macros.texi
index 5520bbbd1df..a2526f383aa 100644
--- a/doc/lispref/macros.texi
+++ b/doc/lispref/macros.texi
@@ -191,8 +191,8 @@ During Compile}).
191@section Defining Macros 191@section Defining Macros
192 192
193 A Lisp macro object is a list whose @sc{car} is @code{macro}, and 193 A Lisp macro object is a list whose @sc{car} is @code{macro}, and
194whose @sc{cdr} is a lambda expression. Expansion of the macro works 194whose @sc{cdr} is a function. Expansion of the macro works
195by applying the lambda expression (with @code{apply}) to the list of 195by applying the function (with @code{apply}) to the list of
196@emph{unevaluated} arguments from the macro call. 196@emph{unevaluated} arguments from the macro call.
197 197
198 It is possible to use an anonymous Lisp macro just like an anonymous 198 It is possible to use an anonymous Lisp macro just like an anonymous