aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa2004-01-28 11:03:31 +0000
committerKenichi Handa2004-01-28 11:03:31 +0000
commitc6876370476a2e4f760b784dbf7872423f739be8 (patch)
tree886bd753a014a666609f25176034e8a84cf21879 /src/coding.c
parent2943f96620eb1e9c552d99fbb31a2a50fe710ec4 (diff)
downloademacs-c6876370476a2e4f760b784dbf7872423f739be8.tar.gz
emacs-c6876370476a2e4f760b784dbf7872423f739be8.zip
(decode_coding_sjis): Fix comment.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 06e5f83742e..eadc55adf6a 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -4048,7 +4048,7 @@ decode_coding_sjis (coding)
4048 } 4048 }
4049 else if (c <= 0xFC && charset_kanji2) 4049 else if (c <= 0xFC && charset_kanji2)
4050 { 4050 {
4051 /* SJIS -> JISX0212 */ 4051 /* SJIS -> JISX0213-2 */
4052 ONE_MORE_BYTE (c1); 4052 ONE_MORE_BYTE (c1);
4053 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC) 4053 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC)
4054 goto invalid_code; 4054 goto invalid_code;