zsh compilations: -w is not needed for _arguments
commita40abc6e00cde8450528b7b638b40f964e077147
authorMarko Myllynen <myllynen@redhat.com>
Fri, 22 Jul 2016 00:19:52 +0000 (22 10:19 +1000)
committerNathan Scott <nathans@redhat.com>
Fri, 22 Jul 2016 00:19:52 +0000 (22 10:19 +1000)
treeb856f68fea41dc7afb4e7cd3f4566de6fe4eec9a
parenta8a036f625c844a8007fbff97ffdd74440ce58e6
zsh compilations: -w is not needed for _arguments

-w was unneeded and in fact incorrect:

The  combination  of  -s  with  -w  allows  single-letter
options  to  be  combined in a single word even if one or
more of the options take arguments.  For example,  if  -a
takes  an  argument,  with no -s `-ab' is considered as a
single (unhandled) option; with -s -ab is an option  with
the  argument  `b';  with  both -s and -w, -ab may be the
option -a and the option -b with arguments still to come.

That is, with -w, -xy <tab> arguments for -x would be completed.
src/zshrc/_pcp