1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-09 00:56:17 +02:00

unposted (see 50930): note bug with suspending conditional expressions

This commit is contained in:
Bart Schaefer 2022-11-12 08:28:28 -08:00
parent 8839e969bf
commit b1533066ca

View File

@ -50,3 +50,8 @@ related, probably obsolete, vared special case for $TERM set to "emacs".
------------------------------------------------------------------------
users/26071: Strange behavior about option completion of "git push --f"
------------------------------------------------------------------------
50930: If a conditional expression appears in a current-shell construct
(such as { sleep 20 && print $? }) which is then suspended with ^Z, the
return value of the left side of the expression is always 148 (SIGSTOP)
and thus the expression is likely to be incorrectly interpreted.
------------------------------------------------------------------------