]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispref/functions.texi (Lambda Expressions): Lambda expressions don't
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 29 May 2013 00:24:50 +0000 (20:24 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 29 May 2013 00:24:50 +0000 (20:24 -0400)
evaluate to themselves in general.

Fixes: debbugs:11782
doc/lispref/ChangeLog
doc/lispref/functions.texi

index 249a2f21ccbcd6525ea2551740c462e95355e3ba..8f675bfcda68646590b44aa8d36b0006dd9d5237 100644 (file)
@@ -1,3 +1,8 @@
+2013-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * functions.texi (Lambda Expressions): Lambda expressions don't
+       evaluate to themselves in general (bug#11782).
+
 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * loading.texi (Autoload):
index 999923f5b842d982652bdefe3cfce9841f115fce..7768c147827c25b37733c48b81a156f5f8a4a24a 100644 (file)
@@ -196,9 +196,8 @@ an example:
 @end example
 
 @noindent
-In Emacs Lisp, such a list is valid as an expression---it evaluates to
-itself.  But its main use is not to be evaluated as an expression, but
-to be called as a function.
+In Emacs Lisp, such a list is a valid expression which evaluates to
+a function object.
 
   A lambda expression, by itself, has no name; it is an @dfn{anonymous
 function}.  Although lambda expressions can be used this way