Commit 03ae9e88 by Thomas Fitzsimmons Committed by Thomas Fitzsimmons

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
parent 821503db
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> 2005-04-13 Mark Wielaard <mark@klomp.org>
* java/lang/natRuntime.cc (insertSystemProperties): Set * java/lang/natRuntime.cc (insertSystemProperties): Set
......
...@@ -40,7 +40,7 @@ help () ...@@ -40,7 +40,7 @@ help ()
static void static void
version () version ()
{ {
printf ("java version " JV_VERSION "\n"); printf ("java version \"" JV_VERSION "\"\n");
printf ("gij (GNU libgcj) version %s\n\n", __VERSION__); printf ("gij (GNU libgcj) version %s\n\n", __VERSION__);
printf ("Copyright (C) 2005 Free Software Foundation, Inc.\n"); printf ("Copyright (C) 2005 Free Software Foundation, Inc.\n");
printf ("This is free software; see the source for copying conditions. There is NO\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) ...@@ -315,7 +315,7 @@ main (int argc, char const** argv)
} }
// -jar mode overrides all other modes of specifying class path: // -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) if (jar_mode)
{ {
char* darg = (char*) JvMalloc (strlen (argv[i]) char* darg = (char*) JvMalloc (strlen (argv[i])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment