diff options
author | Bart Schaefer <schaefer@zsh.org> | 2022-11-12 08:28:28 -0800 |
---|---|---|
committer | Bart Schaefer <schaefer@zsh.org> | 2022-11-12 08:28:28 -0800 |
commit | b1533066ca7d50c88b37ce72093c12cf19807818 (patch) | |
tree | f5f17a370ee6ac1565a52a692cdd417c01b0ce5e /Etc | |
parent | 8839e969bf8f3f129d0efd8ecd51505610a1f01b (diff) | |
download | zsh-b1533066ca7d50c88b37ce72093c12cf19807818.tar.gz zsh-b1533066ca7d50c88b37ce72093c12cf19807818.tar.xz zsh-b1533066ca7d50c88b37ce72093c12cf19807818.zip |
unposted (see 50930): note bug with suspending conditional expressions
Diffstat (limited to 'Etc')
-rw-r--r-- | Etc/BUGS | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Etc/BUGS b/Etc/BUGS index 72c313e88..1719946b1 100644 --- a/Etc/BUGS +++ b/Etc/BUGS @@ -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. +------------------------------------------------------------------------ |