about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-07-11 19:12:22 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-07-11 19:12:22 +0000
commitffabab4e74ae5b7e61550c528b8d19f6af6217e3 (patch)
tree666ce4565e2740f1f4bc4e1c07a2b188004f38f6 /Completion
parent1b1712d065fae345cc5658318757348e9fb298d0 (diff)
downloadzsh-ffabab4e74ae5b7e61550c528b8d19f6af6217e3.tar.gz
zsh-ffabab4e74ae5b7e61550c528b8d19f6af6217e3.tar.xz
zsh-ffabab4e74ae5b7e61550c528b8d19f6af6217e3.zip
25276: use autoload -z for zsh-autoload functions
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Darwin/Type/_retrieve_mac_apps2
-rw-r--r--Completion/Unix/Command/_baz2
-rw-r--r--Completion/Unix/Command/_darcs2
-rw-r--r--Completion/Unix/Command/_tar2
-rw-r--r--Completion/Unix/Command/_tla2
-rw-r--r--Completion/Zsh/Command/_zftp4
6 files changed, 7 insertions, 7 deletions
diff --git a/Completion/Darwin/Type/_retrieve_mac_apps b/Completion/Darwin/Type/_retrieve_mac_apps
index c1b05e9f4..f435fde26 100644
--- a/Completion/Darwin/Type/_retrieve_mac_apps
+++ b/Completion/Darwin/Type/_retrieve_mac_apps
@@ -47,7 +47,7 @@ _mac_apps_old_retrieve () {
 
   # Get single file applications
   if ! zstyle -t ":completion:${curcontext}:commands" ignore-single; then
-    autoload -U zargs
+    autoload -Uz zargs
     local app_cand nargs envvars
     app_cand=( ${^app_dir}^*.[a-z]#/..namedfork/rsrc(.UrN,.RN^U) )
     envvars="$(builtin typeset -x)"
diff --git a/Completion/Unix/Command/_baz b/Completion/Unix/Command/_baz
index 5015456fb..132c6e31d 100644
--- a/Completion/Unix/Command/_baz
+++ b/Completion/Unix/Command/_baz
@@ -1,6 +1,6 @@
 #compdef baz
 
-autoload is-at-least
+autoload -z is-at-least
 local BAZ=$words[1]
 local baz_version
 local hide_short
diff --git a/Completion/Unix/Command/_darcs b/Completion/Unix/Command/_darcs
index aa4d36770..1d3414e45 100644
--- a/Completion/Unix/Command/_darcs
+++ b/Completion/Unix/Command/_darcs
@@ -6,7 +6,7 @@ setopt EXTENDED_GLOB
 local DARCS=$words[1]
 
 # test whether to hide short options from completion
-autoload is-at-least
+autoload -z is-at-least
 local hide_short
 if zstyle -s ":completion:${curcontext}" hide-shortopts hide_short; then
   case $hide_short in
diff --git a/Completion/Unix/Command/_tar b/Completion/Unix/Command/_tar
index 2958b5957..334605137 100644
--- a/Completion/Unix/Command/_tar
+++ b/Completion/Unix/Command/_tar
@@ -24,7 +24,7 @@ local _tar_cmd tf tmp tmpb del index
 if _pick_variant gnu=GNU unix --version; then
   case "$($service --version)" in
     (tar \(GNU tar\) (#b)([0-9.-]##)*)
-    autoload is-at-least
+    autoload -z is-at-least
     is-at-least 1.14.91 "$match[1]" || _cmd_variant[$service]="gnu-old"
     ;;
   esac
diff --git a/Completion/Unix/Command/_tla b/Completion/Unix/Command/_tla
index 9c5c5a821..358a6a736 100644
--- a/Completion/Unix/Command/_tla
+++ b/Completion/Unix/Command/_tla
@@ -1,6 +1,6 @@
 #compdef tla
 
-autoload is-at-least
+autoload -z is-at-least
 local TLA=$words[1]
 local tla_version
 local hide_short
diff --git a/Completion/Zsh/Command/_zftp b/Completion/Zsh/Command/_zftp
index 9c1488fc3..105533055 100644
--- a/Completion/Zsh/Command/_zftp
+++ b/Completion/Zsh/Command/_zftp
@@ -28,13 +28,13 @@ fi
 case $subcom in
   *(cd|ls|dir))
     # complete remote directories
-    [[ -z ${functions[zfcd_match]} ]] && autoload -U zfcd_match
+    [[ -z ${functions[zfcd_match]} ]] && autoload -Uz zfcd_match
     _tags directories && zfcd_match $PREFIX $SUFFIX
     ;;
 
   *(get(|at)|gcp|delete|remote))
     # complete remote files
-    [[ -z ${functions[zfget_match]} ]] && autoload -U zfget_match
+    [[ -z ${functions[zfget_match]} ]] && autoload -Uz zfget_match
     _tags files && zfget_match $PREFIX $SUFFIX
     ;;