Issue #12016: Reindent decoders of HK and JP codecs

This commit is contained in:
Victor Stinner 2011-06-03 23:34:09 +02:00
parent 98e68adc7e
commit 5dfe3bb2d9
2 changed files with 49 additions and 48 deletions

View file

@ -371,11 +371,11 @@ DECODER(euc_jp)
REQUIRE_OUTBUF(1)
if (c < 0x80) {
OUT1(c)
NEXT(1, 1)
continue;
}
if (c < 0x80) {
OUT1(c)
NEXT(1, 1)
continue;
}
if (c == 0x8e) {
/* JIS X 0201 half-width katakana */