From 8746ae9979dc8cccef856300f14f6d98b4285d5a Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Wed, 13 Oct 1999 17:50:30 +0000 Subject: zsh-workers/8231 --- Completion/User/_socket | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Completion/User/_socket') diff --git a/Completion/User/_socket b/Completion/User/_socket index 9b1caab73..e43c14c24 100644 --- a/Completion/User/_socket +++ b/Completion/User/_socket @@ -6,7 +6,7 @@ # The array that contains paris `host:port'. local state line expl -typeset -A options +typeset -A opt_args if [[ $CURRENT -eq 2 && ( -z "$compconfig[option_prefix]" || @@ -41,7 +41,7 @@ command) ;; arg1) - if (( $+options[-s] )); then + if (( $+opt_args[-s] )); then _description expl 'port to listen' _ports "$expl[@]" else @@ -51,7 +51,7 @@ arg1) ;; arg2) - if (( ! $+options[-s] )); then + if (( ! $+opt_args[-s] )); then _description expl 'port to connect' _combination socket_hosts_ports hosts="${line[2]:q}" ports "$expl[@]" fi -- cgit 1.4.1