[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r114171: * doc/lispref/macros.texi (Defining Macros)
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] trunk r114171: * doc/lispref/macros.texi (Defining Macros): Prefer "function" to "lambda |
Date: |
Sun, 08 Sep 2013 18:01:31 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 114171
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15296
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Sun 2013-09-08 14:01:25 -0400
message:
* doc/lispref/macros.texi (Defining Macros): Prefer "function" to "lambda
expression".
modified:
doc/lispref/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-6155
doc/lispref/macros.texi
macros.texi-20091113204419-o5vbwnq5f7feedwu-6195
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog 2013-08-28 06:01:52 +0000
+++ b/doc/lispref/ChangeLog 2013-09-08 18:01:25 +0000
@@ -1,3 +1,8 @@
+2013-09-08 Stefan Monnier <address@hidden>
+
+ * macros.texi (Defining Macros): Prefer "function" to "lambda
+ expression" (bug#15296).
+
2013-08-28 Paul Eggert <address@hidden>
* Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
=== modified file 'doc/lispref/macros.texi'
--- a/doc/lispref/macros.texi 2013-01-16 02:03:06 +0000
+++ b/doc/lispref/macros.texi 2013-09-08 18:01:25 +0000
@@ -191,8 +191,8 @@
@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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r114171: * doc/lispref/macros.texi (Defining Macros): Prefer "function" to "lambda,
Stefan Monnier <=