(decode_coding_utf_16): Fix handling of surrogate pare.

This commit is contained in:
Kenichi Handa 2004-03-04 07:49:18 +00:00
parent 24864b6561
commit 29f7ffd042

View file

@ -1495,7 +1495,7 @@ decode_coding_utf_16 (coding)
{
c = ((surrogate - 0xD800) << 10) | (c - 0xDC00);
CODING_UTF_16_SURROGATE (coding) = surrogate = 0;
*charbuf++ = c;
*charbuf++ = 0x10000 + c;
}
}
else