summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2016-10-05 17:46:42 +0100
committerPeter Stephenson <pws@zsh.org>2016-10-05 17:46:42 +0100
commitbcb52460f3069e2e4e3b05f966a2efd40471e366 (patch)
tree8f8750eddc0f65ffb7c5912b943a39faa767f330 /ChangeLog
parent39568: "! <complex-command>" suppresses ERR_EXIT (diff)
downloadzsh-bcb52460f3069e2e4e3b05f966a2efd40471e366.tar
zsh-bcb52460f3069e2e4e3b05f966a2efd40471e366.tar.gz
zsh-bcb52460f3069e2e4e3b05f966a2efd40471e366.tar.bz2
zsh-bcb52460f3069e2e4e3b05f966a2efd40471e366.tar.lz
zsh-bcb52460f3069e2e4e3b05f966a2efd40471e366.tar.xz
zsh-bcb52460f3069e2e4e3b05f966a2efd40471e366.tar.zst
zsh-bcb52460f3069e2e4e3b05f966a2efd40471e366.zip
39571: Fix ERR_EXIT bug with && and function.
"foo && bar" inside a function could cause the code outside the function not to perform ERR_EXIT or ERR_RETURN when needed.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 318c8df33..1d1d8f9f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2016-10-05 Peter Stephenson <p.stephenson@samsung.com>
+ * 39571: Src/exec.c, Test/C03traps.ztst: "&&" inside a shell
+ function could mess up ERR_EXIT outside.
+
* 39568: Src/exec.c, Test/C03traps.ztst: "! <complex-command>"
should suppress ERR_EXIT inside the complex command.