Commit fa2bb9fd by Alexandre Petit-Bianco Committed by Tom Tromey

lex.c (yylex): Encode \0 as UTF8.

1999-02-10  Alexandre Petit-Bianco  <apbianco@cygnus.com>
	* lex.c (yylex): Encode \0 as UTF8.

From-SVN: r25137
parent 00368bdd
1999-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
* lex.c (yylex): Encode \0 as UTF8.
1999-02-10 Tom Tromey <tromey@cygnus.com>
* jvspec.c (lang_specific_driver): Use libgcj, not libjava.
......
......@@ -903,8 +903,7 @@ java_lex (java_lval)
if (c == '\\')
c = java_parse_escape_sequence ();
no_error &= (c != JAVA_CHAR_ERROR ? 1 : 0);
if (c)
java_unicode_2_utf8 (c);
java_unicode_2_utf8 (c);
}
if (c == '\n' || c == UEOF) /* ULT */
{
......
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