diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-11 15:32:35 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-11 15:32:35 +0000 |
commit | cd65b9b4bbdd1dabfeb8948fd7397bbadfed4622 (patch) | |
tree | 7ded065c811852d0061ab77e5b450c7be1ff7c74 /Completion/Core | |
parent | 567e221218ed1e882a42235b100b1e023b52e1b7 (diff) | |
download | zsh-cd65b9b4bbdd1dabfeb8948fd7397bbadfed4622.tar.gz zsh-cd65b9b4bbdd1dabfeb8948fd7397bbadfed4622.tar.xz zsh-cd65b9b4bbdd1dabfeb8948fd7397bbadfed4622.zip |
_call should pass on the return code from the called command (11327)
Diffstat (limited to 'Completion/Core')
-rw-r--r-- | Completion/Core/_call | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Completion/Core/_call b/Completion/Core/_call index b038a80bc..602e513ff 100644 --- a/Completion/Core/_call +++ b/Completion/Core/_call @@ -11,3 +11,5 @@ if zstyle -s ":completion:${curcontext}:${1}" command tmp; then else eval "$argv[2,-1]" fi + +return $? |