(JIS_TO_SJIS2): Fix the code range check.
authorKenichi Handa <handa@m17n.org>
Wed, 8 Jul 2009 02:23:19 +0000 (02:23 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 8 Jul 2009 02:23:19 +0000 (02:23 +0000)
src/ChangeLog
src/coding.h

index d9ff8b1..94c71a9 100644 (file)
@@ -1,3 +1,10 @@
+2009-07-08  Kenichi Handa  <handa@m17n.org>
+
+       * coding.h (JIS_TO_SJIS2): Fix the code range check.
+
+       * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
+       (encode_coding_sjis): Fix the code range check.
+
 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
 
        * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
index 153ec95..450433f 100644 (file)
@@ -630,7 +630,7 @@ struct coding_system
     if (j1 & 1)                                                \
       {                                                        \
        s1 = (j1 <= 0x25 ? 0xF0 + (j1 - 0x21) / 2       \
-             : j1 <= 0x27 ? 0xF3 + (j1 - 0x2D) / 2     \
+             : j1 <= 0x2F ? 0xF3 + (j1 - 0x2D) / 2     \
              : 0xF5 + (j1 - 0x6F) / 2);                \
        s2 = j2 + ((j2 >= 0x60) ? 0x20 : 0x1F);         \
       }                                                        \