diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-07-01 15:07:25 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-07-01 15:07:25 +0000 |
commit | 041057687fc1d4a2f9912fcb86e04517686b3642 (patch) | |
tree | 0f0d181cebf9c50bf3e2d9d4a50643eafde9a140 /Doc/Zsh | |
parent | 88d07936a21c262ec5f86518cce3c85fd1951968 (diff) | |
download | zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar.gz zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar.xz zsh-041057687fc1d4a2f9912fcb86e04517686b3642.zip |
27083: non-zero status on failures to find or execute file in "."
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/builtins.yo | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo index 2ce9aefd1..3047b3371 100644 --- a/Doc/Zsh/builtins.yo +++ b/Doc/Zsh/builtins.yo @@ -46,7 +46,9 @@ then commands are read from that file instead of var(file). If any arguments var(arg) are given, they become the positional parameters; the old positional parameters are restored when the var(file) is done executing. -The exit status is the exit status of the last command executed. +If var(file) was not found the return status is 129; if var(file) was found +but contained a syntax error the return status is 128; else the return +status is the exit status of the last command executed. ) findex(NOTRANS(:)) cindex(expanding parameters) |