From: Noam Postavsky <npostavs@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 33199@debbugs.gnu.org, garreau@debbugs.gnu.org, galex-713@galex-713.eu
Subject: bug#33199: lambda forms are not self-quoting
Date: Tue, 30 Oct 2018 19:07:16 -0400 [thread overview]
Message-ID: <87sh0nhw4b.fsf@gmail.com> (raw)
In-Reply-To: <83in1jlxyu.fsf@gnu.org> (Eli Zaretskii's message of "Tue, 30 Oct 2018 09:01:29 +0200")
[-- Attachment #1: Type: text/plain, Size: 469 bytes --]
Eli Zaretskii <eliz@gnu.org> writes:
> This removes useful information, IMO.
What's it really useful for though? IMO, all anyone needs to know is
that (lambda ...) evaluates to a function.
> I'd be much happier if we added to the existing docs that lambda is
> not self-quoting in the lexical-binding environment, and described
> (and explained) what does happen in the lexical-binding environment.
It seems to me like too much useless detail, but if you insist.
[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 2655 bytes --]
From bd397a3cec219a453e3118cb59e5955f5a09b870 Mon Sep 17 00:00:00 2001
From: Noam Postavsky <npostavs@gmail.com>
Date: Mon, 29 Oct 2018 19:01:07 -0400
Subject: [PATCH v2] Note that lambda forms are not self-quoting under lex
binding
* doc/lispref/functions.texi (Anonymous Functions):
* lisp/subr.el (lambda): Note that under lexical binding it yields a
closure object (Bug#33199).
---
doc/lispref/functions.texi | 9 ++++++---
lisp/subr.el | 13 +++++++------
2 files changed, 13 insertions(+), 9 deletions(-)
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 9b8057080e..7f8a6fc40b 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -1082,15 +1082,18 @@ Anonymous Functions
@var{args}, documentation string @var{doc} (if any), interactive spec
@var{interactive} (if any), and body forms given by @var{body}.
-In effect, this macro makes @code{lambda} forms self-quoting:
-evaluating a form whose @sc{car} is @code{lambda} yields the form
-itself:
+Under dynamic binding, this macro effectively makes @code{lambda}
+forms self-quoting: evaluating a form whose @sc{car} is @code{lambda}
+yields the form itself:
@example
(lambda (x) (* x x))
@result{} (lambda (x) (* x x))
@end example
+Note that when evaluting under lexical binding the result is a closure
+object (@pxref{Closures}).
+
The @code{lambda} form has one other effect: it tells the Emacs
evaluator and byte-compiler that its argument is a function, by using
@code{function} as a subroutine (see below).
diff --git a/lisp/subr.el b/lisp/subr.el
index 59f6949b21..d09789340f 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -93,12 +93,13 @@ def-edebug-spec
`(put (quote ,symbol) 'edebug-form-spec (quote ,spec)))
(defmacro lambda (&rest cdr)
- "Return a lambda expression.
-A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
-self-quoting; the result of evaluating the lambda expression is the
-expression itself. The lambda expression may then be treated as a
-function, i.e., stored as the function value of a symbol, passed to
-`funcall' or `mapcar', etc.
+ "Return an anonymous function.
+Under dynamic binding, a call of the form (lambda ARGS DOCSTRING
+INTERACTIVE BODY) is self-quoting; the result of evaluating the
+lambda expression is the expression itself. Under lexical
+binding, the result is a closure. Regardless, the result is a
+function, i.e., it may be stored as the function value of a
+symbol, passed to `funcall' or `mapcar', etc.
ARGS should take the same form as an argument list for a `defun'.
DOCSTRING is an optional documentation string.
--
2.11.0
next prev parent reply other threads:[~2018-10-30 23:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-29 23:06 bug#33199: lambda forms are not self-quoting Noam Postavsky
2018-10-30 7:01 ` Eli Zaretskii
2018-10-30 23:07 ` Noam Postavsky [this message]
2018-10-31 16:06 ` Eli Zaretskii
2018-11-09 1:26 ` Noam Postavsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87sh0nhw4b.fsf@gmail.com \
--to=npostavs@gmail.com \
--cc=33199@debbugs.gnu.org \
--cc=eliz@gnu.org \
--cc=galex-713@galex-713.eu \
--cc=garreau@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).