diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2001-08-19 04:23:46 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2001-08-19 04:23:46 +0000 |
commit | 87ca460fe572b748a993ef729b22dd752789030c (patch) | |
tree | 84a405e47e228122381999a3f94cf33133b1efdd /Src | |
parent | 9906e86aee9ed1eab39ea5303425a290de6a4cb2 (diff) | |
download | zsh-87ca460fe572b748a993ef729b22dd752789030c.tar.gz zsh-87ca460fe572b748a993ef729b22dd752789030c.tar.xz zsh-87ca460fe572b748a993ef729b22dd752789030c.zip |
Fix exit status of zsh -fc '! command'
Diffstat (limited to 'Src')
-rw-r--r-- | Src/exec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/exec.c b/Src/exec.c index c428fdbba..17ba376dd 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -943,6 +943,8 @@ execpline(Estate state, wordcode slcode, int how, int last1) if (wc_code(code) != WC_PIPE) return lastval = (slflags & WC_SUBLIST_NOT) != 0; + else if (slflags & WC_SUBLIST_NOT) + last1 = 0; pj = thisjob; ipipe[0] = ipipe[1] = opipe[0] = opipe[1] = 0; |