+1999-12-17 Tom Tromey <tromey@cygnus.com>
+
+ * gjavah.c (decode_signature_piece): Print "::" in JArray<>. This
+ fixes PR gcj/119.
+ (process_file): Use `\n\' at end of each line in string.
+
Tue Dec 14 14:20:16 1999 Per Bothner <per@bothner.com>
* class.c (make_class_data): flag_keep_inline_functions to keep
/* We have to generate a reference to JArray here, so that
our output matches what the compiler does. */
++signature;
- fputs ("JArray<", stream);
+ /* Space between `<' and `:' to avoid C++ digraphs. */
+ fputs ("JArray< ::", stream);
while (signature < limit && *signature != ';')
{
int ch = UTF8_GET (signature, limit);
out);
else
{
- fputs ("// This file was created by `gcjh -stubs'. It is -*- c++ -*-.
-//
-// This file is intended to give you a head start on implementing native
-// methods using CNI.
-// Be aware: running `gcjh -stubs' once more for this class may overwrite any
+ fputs ("// This file was created by `gcjh -stubs'. It is -*- c++ -*-.\n\
+//\n\
+// This file is intended to give you a head start on implementing native\n\
+// methods using CNI.\n\
+// Be aware: running `gcjh -stubs' once more for this class may overwrite any\n\
// edits you have made to this file.\n\n", out);
}
}