From cd65b9b4bbdd1dabfeb8948fd7397bbadfed4622 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Thu, 11 May 2000 15:32:35 +0000 Subject: _call should pass on the return code from the called command (11327) --- ChangeLog | 4 ++++ Completion/Core/_call | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 268df40d4..b52dd31f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-05-11 Oliver Kiddle + + * 11327: Completion/Core/_call: pass on exit code from called command + 2000-05-11 Sven Wischnowsky * 11324: Completion/Base/_argument_sets, Completion/Base/_arguments, 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 $?