(encode_coding_emacs_mule): Emit bytes with MSB.
This commit is contained in:
parent
8656eae58c
commit
1fa663f9b9
1 changed files with 2 additions and 1 deletions
|
@ -2125,9 +2125,10 @@ encode_coding_emacs_mule (coding)
|
|||
if (leading_codes[1])
|
||||
EMIT_ONE_BYTE (leading_codes[1]);
|
||||
if (dimension == 1)
|
||||
EMIT_ONE_BYTE (code);
|
||||
EMIT_ONE_BYTE (code | 0x80);
|
||||
else
|
||||
{
|
||||
code |= 0x8080;
|
||||
EMIT_ONE_BYTE (code >> 8);
|
||||
EMIT_ONE_BYTE (code & 0xFF);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue