Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: `return` does not behave properly under `!`
- X-seq: zsh-workers 51113
- From: Stephane Chazelas <stephane@xxxxxxxxxxxx>
- To: Michael Greenberg <michael@greenberg.science>
- Cc: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>, zsh-workers@xxxxxxx
- Subject: Re: `return` does not behave properly under `!`
- Date: Wed, 7 Dec 2022 16:01:13 +0000
- Archived-at: <https://zsh.org/workers/51113>
- In-reply-to: <m2o7sfp83l.fsf@greenberg.science>
- List-id: <zsh-workers.zsh.org>
- Mail-followup-to: Michael Greenberg <michael@greenberg.science>, Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>, zsh-workers@xxxxxxx
- References: <m2a640qtt8.fsf@greenberg.science> <20221207084255.ykkg6cgzn4nqc73f@chazelas.org> <m2o7sfp83l.fsf@greenberg.science>
2022-12-07 10:05:34 -0500, Michael Greenberg:
> Hi Stephane and Bart (reply inline below, as it's relevant to Stephane),
[...]
> So my reading is the opposite: `return` doesn't have an exit status,
> because it causes the currently executing function (or sourced script)
> to terminate; it does, however, set $?. So `!` shouldn't affect it.
[...]
Agreed.
> But even without a close reading of the spec, it's just not how early
> return works in any language. Having the evaluation context beyond
> `return` affect the returned value subverts the early and immediate
> return---and, in so doing, invites bugs.
[...]
Agreed.
> So far, dash, yash, and zsh are the only shells I've found with this
> behavior, and the dash folks seem to agree that it's an undesirable
> bug. And also...
Also bosh.
I can't see why one would call ! return if not to expect that to
have an effect on the exit status.
$ zsh -c 'f() { ! { false || return; }; }; f; echo "$?"'
0
Is more of a problem though and I agree would be an undesirable bug..
[...]
> Ah---thank you! I wish there were a straightforward fulltext search of
> the archives (though I don't know I would have found this anyway, as it
> doesn't explicitly mention `return`). I'll try to test these patches to
> confirm.
You can download and rsync the full archive from
rsync://rsync.zsh.org/mla/zsh-workers/
And search in there.
$ rsync rsync.zsh.org::
========================================================
ZSH FTP primary site (rsync.zsh.org)
Example usage:
rsync -av --delete rsync://rsync.zsh.org/pub /local/path/to/zsh/pub
Always do a dry run (-n) first or --delete may bite you!
========================================================
Modules:
========================================================
pub Zsh FTP Pub directory (~280MB as of Feb 2010)
mla Zsh Mailing List Archive directory (~333MB as of Feb 2010)
> > That's consistent with ! break causing the while/until loop it's
> > in returning with failure which I've seen code rely upon (AFAIK,
> > that's the only way to get those loops to return with failure;
> > doesn't work in pdksh and derivatives though).
>
> That seems hardly relevant here: a return explicitly sets $?, unlike
> break/continue (which both have exit statuses, unlike return).
[...]
They're still special builtins that break the flow, so I would
still consider it relevant. I've not checked zsh recently but
there are funny things you can do with some shells by calling
break/continue in a function where the corresponding "enclosing"
loop is in one of the callers. IIRC there was some POSIX
discussion about that and the text tightened.
--
Stephane
Messages sorted by:
Reverse Date,
Date,
Thread,
Author