diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2005-04-15 02:40:02 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@gcc.gnu.org> | 2005-04-15 02:40:02 +0000 |
commit | 03ae9e88584d82978e290cfde2dde9dd81acab2b (patch) | |
tree | 279e5282b7c0f749c7a83537c544697fd65823d6 | |
parent | 821503dbd65d1165364328c4568ea457eea06a1d (diff) | |
download | gcc-03ae9e88584d82978e290cfde2dde9dd81acab2b.zip gcc-03ae9e88584d82978e290cfde2dde9dd81acab2b.tar.gz gcc-03ae9e88584d82978e290cfde2dde9dd81acab2b.tar.bz2 |
gij.cc (version): Properly quote java version.
2005-04-14 Thomas Fitzsimmons <fitzsim@redhat.com>
* gij.cc (version): Properly quote java version.
(main): Fix typo in comment.
From-SVN: r98166
-rw-r--r-- | libjava/ChangeLog | 5 | ||||
-rw-r--r-- | libjava/gij.cc | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 7c388da..c6c6205 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2005-04-14 Thomas Fitzsimmons <fitzsim@redhat.com> + + * gij.cc (version): Properly quote java version. + (main): Fix typo in comment. + 2005-04-13 Mark Wielaard <mark@klomp.org> * java/lang/natRuntime.cc (insertSystemProperties): Set diff --git a/libjava/gij.cc b/libjava/gij.cc index 6eee6b5..010e72f 100644 --- a/libjava/gij.cc +++ b/libjava/gij.cc @@ -40,7 +40,7 @@ help () static void version () { - printf ("java version " JV_VERSION "\n"); + printf ("java version \"" JV_VERSION "\"\n"); printf ("gij (GNU libgcj) version %s\n\n", __VERSION__); printf ("Copyright (C) 2005 Free Software Foundation, Inc.\n"); printf ("This is free software; see the source for copying conditions. There is NO\n"); @@ -315,7 +315,7 @@ main (int argc, char const** argv) } // -jar mode overrides all other modes of specifying class path: - // -CLASSPATH, -Djava.class.path, -classpath and -cp. + // CLASSPATH, -Djava.class.path, -classpath and -cp. if (jar_mode) { char* darg = (char*) JvMalloc (strlen (argv[i]) |