diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2009-01-24 15:07:20 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2009-01-24 15:07:20 +0000 |
commit | 7d8db3f1a326685d884ff11e8b2e13f9c3401b5f (patch) | |
tree | 137c82e5e97a7eb96b988874c4a43662e5dcfb5c | |
parent | f99436b3a98dfbb86b3dd547d5c58a412b967bd7 (diff) | |
download | zsh-7d8db3f1a326685d884ff11e8b2e13f9c3401b5f.tar.gz zsh-7d8db3f1a326685d884ff11e8b2e13f9c3401b5f.tar.xz zsh-7d8db3f1a326685d884ff11e8b2e13f9c3401b5f.zip |
26413: update ant completion for version 1.7.1
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/Unix/Command/_ant | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 9c31bcae0..d151dfbb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2009-01-24 Doug Kearns <dougkearns@gmail.com> + * 26413: Completion/Unix/Command/_ant: update for version 1.7.1. + * 26411: Completion/Cygwin/Command/.distfiles, Completion/Cygwin/Command/_cygcheck, Completion/Cygwin/Command/_cygpath, @@ -10993,5 +10995,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4524 $ +* $Revision: 1.4525 $ ***************************************************** diff --git a/Completion/Unix/Command/_ant b/Completion/Unix/Command/_ant index e4f5efa67..91db1c162 100644 --- a/Completion/Unix/Command/_ant +++ b/Completion/Unix/Command/_ant @@ -1,6 +1,6 @@ #compdef ant -value-,ANT_ARGS,-default- -# Apache Ant version 1.6.5 +# Apache Ant version 1.7.1 local curcontext="$curcontext" state line expl ret=1 typeset -A opt_args @@ -52,6 +52,8 @@ _arguments -C \ '-nice[specify a niceness value for the main thread]:niceness value (default 5):({1..10})' \ '-nouserlib[run ant without using the jar files from ${user.home}/.ant/lib]' \ '-noclasspath[run ant without using CLASSPATH]' \ + '-autoproxy[Java1.5+: use the OS proxy settings]' \ + "-main[override Ant's normal entry point]:class:->class" \ $target && ret=0 case $state in |