mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
CJK codecs: less magical macros, semicolon is now explicit
This commit is contained in:
parent
14c9fea60a
commit
28c63f7ffb
8 changed files with 115 additions and 101 deletions
|
|
@ -119,7 +119,7 @@ DECODER(big5hkscs)
|
|||
continue;
|
||||
}
|
||||
|
||||
REQUIRE_INBUF(2)
|
||||
REQUIRE_INBUF(2);
|
||||
|
||||
if (0xc6 > c || c > 0xc8 || (c < 0xc7 && INBYTE2 < 0xa1)) {
|
||||
if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue