about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2004-11-20 17:35:00 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2004-11-20 17:35:00 +0000
commitf1846d402bed119a74409c3b417484661e100e27 (patch)
treedec1443a475a057132233fcb9a23994ccf569c25
parentc1a3961657b4957619b81e5aba9bc959525e285c (diff)
downloadzsh-f1846d402bed119a74409c3b417484661e100e27.tar.gz
zsh-f1846d402bed119a74409c3b417484661e100e27.tar.xz
zsh-f1846d402bed119a74409c3b417484661e100e27.zip
20571: update javac completion for J2SE 5.0
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_java4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2d816cbc0..13d4c5731 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-20  Doug Kearns  <djkea2@mugca.its.monash.edu.au>
+
+	* 20571: Completion/Unix/Command/_java: update javac completion for
+	J2SE 5.0
+
 2004-11-19  Peter Stephenson  <pws@csr.com>
 
 	* 20568: Src/pattern.c: in debug test, checking for NULL
diff --git a/Completion/Unix/Command/_java b/Completion/Unix/Command/_java
index 949477b73..3faf10273 100644
--- a/Completion/Unix/Command/_java
+++ b/Completion/Unix/Command/_java
@@ -19,8 +19,8 @@ javac)
     '-extdirs[override location of installed extensions]:extensions directories:->extdirs' \
     '-d[specify where to place generated class files]:directory:_files -/' \
     '-encoding[specify character encoding used by source files]:encoding:->encoding' \
-    '-source[provide source compatibility with specified release]:release:(1.3 1.4)' \
-    '-target[specify VM version]:release:(1.{1..4})' \
+    '-source[provide source compatibility with specified release]:release:(1.{2..5})' \
+    '-target[specify VM version]:release:(1.{1..5})' \
     '-help[print a synopsis of standard options]' \
     '*:java source file:_files -g \*.java\(-.\)' && return 0
   ;;