diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-03 21:34:09 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-03 21:34:09 (GMT) |
commit | 5dfe3bb2d9416ab3e77834bd65b6f575cbb49009 (patch) | |
tree | a3a7cd3cece1e0539ffbe6c2f9a250525d13d2e2 /Modules/cjkcodecs/_codecs_jp.c | |
parent | 98e68adc7ee0acdeda4747e91fdb3deed1eaa5dc (diff) | |
download | cpython-5dfe3bb2d9416ab3e77834bd65b6f575cbb49009.zip cpython-5dfe3bb2d9416ab3e77834bd65b6f575cbb49009.tar.gz cpython-5dfe3bb2d9416ab3e77834bd65b6f575cbb49009.tar.bz2 |
Issue #12016: Reindent decoders of HK and JP codecs
Diffstat (limited to 'Modules/cjkcodecs/_codecs_jp.c')
-rw-r--r-- | Modules/cjkcodecs/_codecs_jp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/cjkcodecs/_codecs_jp.c b/Modules/cjkcodecs/_codecs_jp.c index 901d3be..a05e01b 100644 --- a/Modules/cjkcodecs/_codecs_jp.c +++ b/Modules/cjkcodecs/_codecs_jp.c @@ -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 */ |