From e6cc1ece7fed93fd31ca4e7f7726de034ede887c Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Tue, 15 Feb 2000 09:07:09 +0000 Subject: zsh-workers/9731 --- Completion/User/_lp | 8 ++++---- Completion/User/_socket | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'Completion/User') diff --git a/Completion/User/_lp b/Completion/User/_lp index 7cd770f63..d1c110b1c 100644 --- a/Completion/User/_lp +++ b/Completion/User/_lp @@ -37,7 +37,7 @@ fi if compset -P -P || [[ "$words[CURRENT-1]" = -P ]]; then if _wanted printers expl printer; then - if zstyle -t ":completion:${curcontext}:printers" verbose; then + if zstyle -T ":completion:${curcontext}:printers" verbose; then zformat -a list ' -- ' "$_lp_cache[@]" disp=(-ld list) else @@ -47,7 +47,7 @@ if compset -P -P || [[ "$words[CURRENT-1]" = -P ]]; then (( $+_lp_alias_cache )) || return 1 - if zstyle -t ":completion:${curcontext}:printers" verbose; then + if zstyle -T ":completion:${curcontext}:printers" verbose; then zformat -a list ' -- ' "$_lp_alias_cache[@]" disp=(-ld list) else @@ -73,7 +73,7 @@ else if _requested users expl user; then strs=( "${(@)${(@)list##[^ ]##[ ]##[^ ]##[ ]##}%%[ ]*}" ) if [[ -z "$shown" ]] && - zstyle -t ":completion:${curcontext}:users" verbose; then + zstyle -T ":completion:${curcontext}:users" verbose; then disp=(-ld list) shown=yes else @@ -84,7 +84,7 @@ else if _requested jobs expl job; then strs=( "${(@)${(@)list##[^ ]##[ ]##[^ ]##[ ]##[^ ]##[ ]##}%%[ ]*}" ) if [[ -z "$shown" ]] && - zstyle -t ":completion:${curcontext}:jobs" verbose; then + zstyle -T ":completion:${curcontext}:jobs" verbose; then disp=(-ld list) shown=yes else diff --git a/Completion/User/_socket b/Completion/User/_socket index bb9ee2a67..dfe8f4844 100644 --- a/Completion/User/_socket +++ b/Completion/User/_socket @@ -9,7 +9,7 @@ local curcontext="$curcontext" state line expl typeset -A opt_args [[ $CURRENT -eq 2 ]] && _wanted options expl option && - { ! zstyle -t ":completion:${curcontext}:options" prefix-needed || + { ! zstyle -T ":completion:${curcontext}:options" prefix-needed || [[ "$PREFIX" = -* ]] } && compadd -M 'r:|[_-]=* r:|=*' "$expl[@]" - -version -- cgit 1.4.1