mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-24 11:24:05 +08:00
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
This commit is contained in:
parent
ee5f86dcd7
commit
c385cdf6a8
@ -1,3 +1,8 @@
|
||||
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:
|
||||
|
Loading…
Reference in New Issue
Block a user