From: Drew Adams <drew.adams@oracle.com>
To: Michael Heerdegen <michael_heerdegen@web.de>,
Robert Cochran <robert-emacs@cochranmail.com>
Cc: Chunyang Xu <xuchunyang.me@gmail.com>, 24362@debbugs.gnu.org
Subject: bug#24362: 25.1.50; Inconsistent docstring between pcase-let and pcase-let*
Date: Thu, 15 Sep 2016 15:00:15 -0700 (PDT) [thread overview]
Message-ID: <874c9f9a-631e-4cfc-8301-f9279228e121@default> (raw)
In-Reply-To: <87k2ecalre.fsf@web.de>
> > This patch changes the pcase-let* docstring to match the pcase-let
> > docstring, but IMO I don't think that the phrase 'a list of
> > expressions' is exactly the right term for this. That (to me) implies
> > that we are wrapping the whole body in a list, which you don't.
>
> Isn't this just normal "Elisp speak" for a &rest parameter? Sure, the
> value of the parameter doesn't appear in the code (only "spliced in") -
> but we use this wording all the time.
An &rest formal parameter corresponds to a list of actual arguments
in the calling sequence.
Consider (defun foo (&rest xs) (message "Args: %S" xs)).
At runtime, XS is the only argument that you can access by name -
the only argument whose value is bound to a variable.
And yes, its value at runtime, i.e., in any actual call, is a list.
On the other hand, not only (foo 1 2) but also (funcall #'foo 1 2)
treat 1 and 2 as actual arguments. The list (1 2) does not appear
explicitly in these calling sequences.
So if you are talking about `foo's actual arguments for such a call
then you can say they are 1 and 2. But if you are talking about the
value of the &rest argument XS for such a call then you must say
that the value is a list.
next prev parent reply other threads:[~2016-09-15 22:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-04 4:26 bug#24362: 25.1.50; Inconsistent docstring between pcase-let and pcase-let* Chunyang Xu
2016-09-14 23:06 ` Robert Cochran
2016-09-15 21:36 ` Michael Heerdegen
2016-09-15 21:57 ` Robert Cochran
2016-09-15 22:00 ` Drew Adams [this message]
2016-09-15 22:40 ` Michael Heerdegen
2016-09-23 16:26 ` Michael Heerdegen
2016-09-23 20:45 ` Robert Cochran
2016-09-25 14:32 ` Michael Heerdegen
2016-09-26 23:39 ` Robert Cochran
2019-11-08 3:43 ` Stefan Kangas
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=874c9f9a-631e-4cfc-8301-f9279228e121@default \
--to=drew.adams@oracle.com \
--cc=24362@debbugs.gnu.org \
--cc=michael_heerdegen@web.de \
--cc=robert-emacs@cochranmail.com \
--cc=xuchunyang.me@gmail.com \
/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).