set -e
false && true
echo done $?
set -e
{ false && true } always { echo ALWAYS }
echo done $?
On Thu, Dec 1, 2022 at 11:30 AM Philippe Altherr
<philippe.altherr@xxxxxxxxx> wrote:
>
> The patch about the always statement makes it behave like compound statements.
A statement followed by an always-block should always behave as if the
always-block wasn't there, except in the TRY_BLOCK_ERROR cases
mentioned in the description of "always". I suppose your patches
should be tested against that.