Commit 8af456c8 by Alexandre Petit-Bianco Committed by Alexandre Petit-Bianco

Changelog: Fixed 1999-03-22 typos.

Mon Mar 22 20:14:26 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
	* Changelog: Fixed 1999-03-22 typos.
	* lang.c (lang_decode_option): Fixed typo in error string in the
 	XARG section.
(Grr, typos.)

From-SVN: r25908
parent 235acd35
Mon Mar 22 20:14:26 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* Changelog: Fixed 1999-03-22 typos.
* lang.c (lang_decode_option): Fixed typo in error string in the
XARG section.
1999-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com> 1999-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
* Makefile.in: (JAVA_OBJS) Added entry xref.o. * Makefile.in (JAVA_OBJS): Added entry xref.o.
(xref.o): New rule. (xref.o): New rule.
* java-tree.h (flag_emit_xref): Declared extern. * java-tree.h (flag_emit_xref): Declared extern.
* lang.c: (xref.h): Included. * lang.c (xref.h): Included.
(flag_emit_xref): New global variable. (flag_emit_xref): New global variable.
(lang_decode_option): Added support for -fxref. (lang_decode_option): Added support for -fxref.
* xref.c: Created. * xref.c: Created.
......
...@@ -179,7 +179,7 @@ lang_decode_option (argc, argv) ...@@ -179,7 +179,7 @@ lang_decode_option (argc, argv)
{ {
if (!(flag_emit_xref = xref_flag_value (p + sizeof (XARG) - 1))) if (!(flag_emit_xref = xref_flag_value (p + sizeof (XARG) - 1)))
{ {
error ("Unkown xref back end `%s'", p + sizeof (XARG) - 1); error ("Unkown xref format `%s'", p + sizeof (XARG) - 1);
} }
} }
#undef XARG #undef XARG
......
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