parent
cb03eedc91
commit
0b18ab6978
|
@ -724,7 +724,7 @@ static const uint Mac2Unicode[128] =
|
||||||
/* Function to convert from MacRoman to Unicode */
|
/* Function to convert from MacRoman to Unicode */
|
||||||
uint TY_(DecodeMacRoman)(uint c)
|
uint TY_(DecodeMacRoman)(uint c)
|
||||||
{
|
{
|
||||||
if (127 < c)
|
if (127 < c && c < 256) /* Is. #891 */
|
||||||
c = Mac2Unicode[c - 128];
|
c = Mac2Unicode[c - 128];
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue