zsh-workers
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: "zsh-workers@zsh.org" <zsh-workers@zsh.org>
Subject: Re: function definition with & operator
Date: Sat, 2 Sep 2017 12:23:25 -0700	[thread overview]
Message-ID: <CAH+w=7aPfbZ9cpCqSV3EDMnb-zSGvzX2OBAa9uJ5QNs1vLvnCg@mail.gmail.com> (raw)
In-Reply-To: <c59ec58a-e0bd-63d5-feed-095df245b942@gmx.com>

On Fri, Sep 1, 2017 at 2:23 PM, Eric Cook <llua@gmx.com> wrote:
> On 09/01/2017 04:46 PM, Bart Schaefer wrote:
>> On Fri, Sep 1, 2017 at 11:09 AM, Eric Cook <llua@gmx.com> wrote:
>>> The other week when messing around i noticed that you can define an function
>>> in (what i thought would be) the background and it will remain in defined.
>>
>> Background jobs are always run in a subshell,
>
> Exactly what i thought, but if that were the case, foo wouldn't be defined after
> the first example since & was the terminator used instead of ;.

Oh, I see.  I read "in defined" as a typo or auto-correct-o for
"undefined" and thought you were complaining about the "{ ... } &"
example.

Yes, this is odd, and it appears to have always been this way.
However, it's a bit more than a minor bug, because it also affects
anonymous functions; compare:

    zsh -fc '{ sleep 10 } & print $SECONDS'
    0
    zsh -fc '() { sleep 10 } & print $SECONDS'
    10

What's going on here is that a function definition is not actually a
command, it's a syntax construct that is special-cased in exec.c.
However, I'm not sure how to resolve it.


  reply	other threads:[~2017-09-02 19:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-01 18:09 Eric Cook
2017-09-01 20:46 ` Bart Schaefer
2017-09-01 21:23   ` Eric Cook
2017-09-02 19:23     ` Bart Schaefer [this message]
2017-09-02 19:37 ` Peter Stephenson

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAH+w=7aPfbZ9cpCqSV3EDMnb-zSGvzX2OBAa9uJ5QNs1vLvnCg@mail.gmail.com' \
    --to=schaefer@brasslantern.com \
    --cc=zsh-workers@zsh.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.vuxu.org/mirror/zsh/

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 NNTP newsgroup(s).