Commit c385cdf6 by Bryce McKinlay Committed by Bryce McKinlay

jcf-parse.c (get_constant): Call UT8_CHAR_LENGTH on `utf8', not the scratch buffer.

2000-11-22  Bryce McKinlay  <bryce@albatross.co.nz>

	* jcf-parse.c (get_constant): Call UT8_CHAR_LENGTH on `utf8', not the
	scratch buffer.

From-SVN: r37646
parent ee5f86dc
2000-11-22 Bryce McKinlay <bryce@albatross.co.nz>
* jcf-parse.c (get_constant): Call UT8_CHAR_LENGTH on `utf8', not the
scratch buffer.
2000-11-20 Tom Tromey <tromey@cygnus.com>
* jv-scan.c (help): Document --complexity.
......
......@@ -358,7 +358,7 @@ get_constant (jcf, index)
for (i = 0; i < str_len; i++)
{
int char_value;
int char_len = UT8_CHAR_LENGTH (*str);
int char_len = UT8_CHAR_LENGTH (*utf8);
switch (char_len)
{
case 1:
......
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