about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2001-12-19 15:10:38 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-12-19 15:10:38 +0000
commit17502f6eb23dfddb9bdc705eb496ebf41aae4d7c (patch)
treec8536e6108a301e79e387e63f482337bf28e1976
parentcd4e617bfd289ddcc4fa1f55b3cbfdceb5100fd1 (diff)
downloadzsh-17502f6eb23dfddb9bdc705eb496ebf41aae4d7c.tar.gz
zsh-17502f6eb23dfddb9bdc705eb496ebf41aae4d7c.tar.xz
zsh-17502f6eb23dfddb9bdc705eb496ebf41aae4d7c.zip
add missing description argument in _values calls (16366)
-rw-r--r--ChangeLog4
-rw-r--r--Completion/Unix/Command/_java7
-rw-r--r--Completion/Unix/Command/_samba2
-rw-r--r--Completion/X/Command/_vnc2
4 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 1754c1573..55f8df9ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2001-12-19  Oliver Kiddle  <opk@zsh.org>
 
+	* 16366: Completion/X/Command/_vnc, Completion/Unix/Command/_java,
+	Completion/Unix/Command/_samba: add missing description
+	argument in _values calls
+
 	* 16366: Completion/Unix/Type/_net_interfaces,
 	Completion/Unix/Command/_ifconfig, Completion/Unix/Type/.distfiles,
 	Completion/Unix/Command/.distfiles: new ifconfig completion
diff --git a/Completion/Unix/Command/_java b/Completion/Unix/Command/_java
index 0e04cb91d..22003bc26 100644
--- a/Completion/Unix/Command/_java
+++ b/Completion/Unix/Command/_java
@@ -360,10 +360,11 @@ case "$state" in
 debug)
   if [[ -prefix :*, ]]; then
     compset -P :
-    _values -s , lines vars source
+    _values -s , "debug info" lines vars source
   else
-    compadd -P: none
-    compadd -P: -qS, lines vars source
+    _description debuginfo expl "debug info"
+    compadd -P: "$expl[@]" none
+    compadd -P: -qS, "$expl[@]" lines vars source
   fi
   ;;
 
diff --git a/Completion/Unix/Command/_samba b/Completion/Unix/Command/_samba
index 110c5008b..8e9d4aefe 100644
--- a/Completion/Unix/Command/_samba
+++ b/Completion/Unix/Command/_samba
@@ -35,7 +35,7 @@ case $service in
       '(-N -A)2:password'
       '(2)-s+[specify location of smb.conf]:smb.conf location:_files'
       '(2)-O+[specify socket options]:socket options'
-      '(2)-R+[specify name resolution order]:name resolution order:_values -s " " lmhosts host wins bcast'
+      '(2)-R+[specify name resolution order]:name resolution order:_values -s " " "name resolution order" lmhosts host wins bcast'
       '(2 -L -D -T)-M+[send message]:host:_hosts'
       '(2)-i+[specify NetBIOS scope]:scope'
       '(2)-N[suppress password prompt]'
diff --git a/Completion/X/Command/_vnc b/Completion/X/Command/_vnc
index 24ffc3f83..ce324a81d 100644
--- a/Completion/X/Command/_vnc
+++ b/Completion/X/Command/_vnc
@@ -21,7 +21,7 @@ case $service in
   ;;
   *vncviewer) 
     _xt_arguments -shared -viewonly -fullscreen -bgr233 -owncmap -truecolour \
-      '-encodings:encodings:_values -s " " copyrect hextile corre rre raw' \
+      '-encodings:encodings:_values -s " " encoding copyrect hextile corre rre raw' \
       '-depth:depth' \
       '-passwd:file:_files' \
       '(1)-listen:display number' \