diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-07-28 13:33:52 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-07-28 13:33:52 +0000 |
commit | 10c2f225fdb6e2b6cd96b2f3786d6134e19bbfd1 (patch) | |
tree | 32c80b045d603144ffafde5acf96853ba164d3f7 /Functions/TCP/tcp_open | |
parent | 278a892888352f717b72dc1af06105cdfcbe63fe (diff) | |
download | zsh-10c2f225fdb6e2b6cd96b2f3786d6134e19bbfd1.tar.gz zsh-10c2f225fdb6e2b6cd96b2f3786d6134e19bbfd1.tar.xz zsh-10c2f225fdb6e2b6cd96b2f3786d6134e19bbfd1.zip |
c.f. users/15202: use "autoload -Uz" consistently
Diffstat (limited to 'Functions/TCP/tcp_open')
-rw-r--r-- | Functions/TCP/tcp_open | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Functions/TCP/tcp_open b/Functions/TCP/tcp_open index 01327dc74..091217788 100644 --- a/Functions/TCP/tcp_open +++ b/Functions/TCP/tcp_open @@ -57,9 +57,9 @@ setopt extendedglob cbases zmodload -i zsh/net/tcp || return 1 zmodload -i zsh/zutil -autoload -U tcp_alias tcp_close tcp_command tcp_expect tcp_fd_handler -autoload -U tcp_log tcp_output tcp_proxy tcp_read tcp_rename tcp_send -autoload -U tcp_sess tcp_spam tcp_talk tcp_wait tcp_point tcp_shoot +autoload -Uz tcp_alias tcp_close tcp_command tcp_expect tcp_fd_handler +autoload -Uz tcp_log tcp_output tcp_proxy tcp_read tcp_rename tcp_send +autoload -Uz tcp_sess tcp_spam tcp_talk tcp_wait tcp_point tcp_shoot # TCP_SECONDS_START is only set if we override TCP_SECONDS locally, # so provide a global value for convenience. Should probably always be 0. |