(decode_coding_big5, produce_chars): Fix typos in last

change.
This commit is contained in:
Andreas Schwab 2008-03-02 19:56:45 +00:00
parent 480a77b543
commit 14daee73e5
2 changed files with 8 additions and 3 deletions

View file

@ -4264,7 +4264,7 @@ decode_coding_big5 (coding)
break;
if (byte_after_cr >= 0)
c1 = byte_after_cr, byte_after_cr = -1;
c = byte_after_cr, byte_after_cr = -1;
else
ONE_MORE_BYTE (c);
@ -4272,7 +4272,7 @@ decode_coding_big5 (coding)
goto invalid_code;
if (c < 0x80)
{
if (eol_crlf && c1 == '\r')
if (eol_crlf && c == '\r')
ONE_MORE_BYTE (byte_after_cr);
charset = charset_roman;
}
@ -6108,7 +6108,7 @@ produce_chars (coding, translation_table, last_block)
}
produced_chars = coding->consumed_char;
while (src < src_end)
*dst += *src++;
*dst++ = *src++;
}
}