From a5cf7779bc4a73c7c2f3174988e223c5cc783226 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 28 May 2013 20:24:50 -0400 Subject: [PATCH] * doc/lispref/functions.texi (Lambda Expressions): Lambda expressions don't evaluate to themselves in general. Fixes: debbugs:11782 --- doc/lispref/ChangeLog | 5 +++++ doc/lispref/functions.texi | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 249a2f21ccb..8f675bfcda6 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,8 @@ +2013-05-29 Stefan Monnier + + * functions.texi (Lambda Expressions): Lambda expressions don't + evaluate to themselves in general (bug#11782). + 2013-05-15 Stefan Monnier * loading.texi (Autoload): diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 999923f5b84..7768c147827 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi @@ -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 -- 2.11.4.GIT