about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2000-05-11 15:32:35 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2000-05-11 15:32:35 +0000
commitcd65b9b4bbdd1dabfeb8948fd7397bbadfed4622 (patch)
tree7ded065c811852d0061ab77e5b450c7be1ff7c74 /Completion
parent567e221218ed1e882a42235b100b1e023b52e1b7 (diff)
downloadzsh-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')
-rw-r--r--Completion/Core/_call2
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 $?