diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2003-06-25 09:03:04 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2003-06-25 09:03:04 +0000 |
commit | a267832ddf4150652fde3936858841bb2edbd9ae (patch) | |
tree | 961f0cbcaf8dbdaf2ff2e1a5409d644158f592bf /Completion/Unix/Command/_prcs | |
parent | dd54fb249881fa882319cd2642780dcebb8d9f7c (diff) | |
download | zsh-a267832ddf4150652fde3936858841bb2edbd9ae.tar.gz zsh-a267832ddf4150652fde3936858841bb2edbd9ae.tar.xz zsh-a267832ddf4150652fde3936858841bb2edbd9ae.zip |
18631: returning too early breaks prefix-needed style set to false
Diffstat (limited to 'Completion/Unix/Command/_prcs')
-rw-r--r-- | Completion/Unix/Command/_prcs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Unix/Command/_prcs b/Completion/Unix/Command/_prcs index 29a1c8652..46e441c34 100644 --- a/Completion/Unix/Command/_prcs +++ b/Completion/Unix/Command/_prcs @@ -1,6 +1,6 @@ #compdef prcs -local curcontext="$curcontext" state line subcmds +local curcontext="$curcontext" state line subcmds ret=1 typeset -A opt_args # lookup project names in the repository @@ -34,7 +34,7 @@ _prcs_arguments() { _arguments -C \ '(* -)'{-h,-H,--help}'[print out help]' \ '(* -)--version[display program version]' \ - '*:: :->subcmd' && return 0 + '*:: :->subcmd' && ret=0 if (( CURRENT == 1 )); then subcmds=( @@ -54,8 +54,8 @@ if (( CURRENT == 1 )); then 'unpackage:unpackage project in packagefile' ) - _describe -t commands 'prcs command' subcmds - return + _describe -t commands 'prcs command' subcmds && ret=0 + return ret fi curcontext="${curcontext%:*}-$words[1]:" |