about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2001-02-22 14:28:47 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2001-02-22 14:28:47 +0000
commit40e13049874fcb801295849509fc4128fa1c91d9 (patch)
treec11e9aa3a70b250abcaf2b69ad6d92a1bf47be54
parentfbe44ac8381e84e02a197803b186c12dfbcfecbc (diff)
downloadzsh-40e13049874fcb801295849509fc4128fa1c91d9.tar.gz
zsh-40e13049874fcb801295849509fc4128fa1c91d9.tar.xz
zsh-40e13049874fcb801295849509fc4128fa1c91d9.zip
13520: use services and shorten description in _vars_eq
-rw-r--r--Completion/Builtins/_vars_eq6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Builtins/_vars_eq b/Completion/Builtins/_vars_eq
index 6ccf6a39c..8bc8e6e63 100644
--- a/Completion/Builtins/_vars_eq
+++ b/Completion/Builtins/_vars_eq
@@ -6,8 +6,8 @@ local -a args
 
 allargs=( \
   A '(-E -F -L -R -T -U -Z -a -f -i -m)-A[specify that arguments refer to associative arrays]' \
-  E '(-A -F -L -R -T -U -Z -a -f -i -m)-E[represent internally as floating point, use engineering notation on output]' \
-  F '(-A -E -L -R -T -U -Z -a -f -i -m)-F[represent internally as floating point, use fixed point decimal on output]' \
+  E '(-A -F -L -R -T -U -Z -a -f -i -m)-E[floating point, use engineering notation on output]' \
+  F '(-A -E -L -R -T -U -Z -a -f -i -m)-F[floating point, use fixed point decimal on output]' \
   L '(-A -E -F -f -i)-L+[left justify and remove leading blanks from value]:width' \
   R '(-A -E -F -f -i)-R+[right justify and fill with leading blanks]:width' \
   T '(-A -E -F -a -f -g -h -i -l -m -t)-T[tie scalar to array]' \
@@ -33,7 +33,7 @@ allargs=( \
 
 use="AEFLRTUZafghilmrtux"
 
-case ${words[1]} in
+case ${service} in
   float) use="EFghlrtux";;
   functions)
     use="Umtu"