diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-07-28 15:53:32 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-07-28 15:53:32 +0000 |
commit | 93e0bc094fe10cb5b20a53818247d10a2ecdec14 (patch) | |
tree | ed5cd44e63b50f74de0e63f85cf11033f9eddef4 /Functions/Zftp/zfinit | |
parent | 4de3dbac168aa5e89d4f7c278917c8af4b226542 (diff) | |
download | zsh-93e0bc094fe10cb5b20a53818247d10a2ecdec14.tar.gz zsh-93e0bc094fe10cb5b20a53818247d10a2ecdec14.tar.xz zsh-93e0bc094fe10cb5b20a53818247d10a2ecdec14.zip |
users/15204: in zfinit check for compctl before using
Diffstat (limited to 'Functions/Zftp/zfinit')
-rw-r--r-- | Functions/Zftp/zfinit | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Functions/Zftp/zfinit b/Functions/Zftp/zfinit index 68e6a9691..5587a824c 100644 --- a/Functions/Zftp/zfinit +++ b/Functions/Zftp/zfinit @@ -34,7 +34,8 @@ autoload -Uz zfstat zftp_chpwd zftp_progress zftransfer zftype zfuget zfuput # zftp completions: only use these if new-style completion is not # active. # -if [[ ${#_patcomps} -eq 0 || -z ${_patcomps[(r)_zf*]} ]]; then +if [[ ${#_patcomps} -eq 0 || -z ${_patcomps[(r)_zf*]} ]] && + (compctl >/dev/null 2>&1); then # only way of getting that noglob out of the way: this is unnecessary with # widget-based completion setopt completealiases |