completion: synchronize zsh wrapper

So it's closer to the full zsh wrapper.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Felipe Contreras 2013-05-08 02:37:01 -05:00 committed by Junio C Hamano
parent 2bcf694b18
commit 734b2f0532

View File

@ -2663,7 +2663,7 @@ if [[ -n ${ZSH_VERSION-} ]]; then
--*=*|*.) ;; --*=*|*.) ;;
*) c="$c " ;; *) c="$c " ;;
esac esac
array[$#array+1]="$c" array+=("$c")
done done
compset -P '*[=:]' compset -P '*[=:]'
compadd -Q -S '' -p "${2-}" -a -- array && _ret=0 compadd -Q -S '' -p "${2-}" -a -- array && _ret=0
@ -2696,7 +2696,7 @@ if [[ -n ${ZSH_VERSION-} ]]; then
prev=${words[CURRENT-1]} prev=${words[CURRENT-1]}
let cword=CURRENT-1 let cword=CURRENT-1
emulate ksh -c __${service}_main emulate ksh -c __${service}_main
let _ret && _default -S '' && _ret=0 let _ret && _default && _ret=0
return _ret return _ret
} }