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/AIX/Command | |
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/AIX/Command')
-rw-r--r-- | Completion/AIX/Command/_smit | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Completion/AIX/Command/_smit b/Completion/AIX/Command/_smit index 48397b5b0..f02229501 100644 --- a/Completion/AIX/Command/_smit +++ b/Completion/AIX/Command/_smit @@ -18,10 +18,8 @@ _arguments -C \ '-v[verbose]' \ '-x[do not run any execute commands]' \ '-X[do not run any commands]' \ - '1:fastpath:->fastpath' && return 0 + '1:fast path:->fastpath' -[[ "$state" = fastpath ]] && +[[ "$state" = fastpath ]] && (( $+commands[odmget] )) && _wanted fastpaths expl 'fast path' compadd \ $(odmget sm_cmd_hdr sm_name_hdr|sed -n 's/^ id = \"\(.*\)\"/\1/p') - - |