changeset 88498:1dd66ce3fc9c

(JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
author Kenichi Handa <handa@m17n.org>
date Tue, 14 May 2002 08:01:27 +0000
parents d2b9e0d4c2f6
children 75801a503812
files src/coding.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.h	Tue May 14 08:00:53 2002 +0000
+++ b/src/coding.h	Tue May 14 08:01:27 2002 +0000
@@ -473,7 +473,7 @@
     else						\
       (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x70 : 0xB0),	\
        s2 = j2 + 0x7E);					\
-    (code) = (j1 << 8) | j2;				\
+    (code) = (s1 << 8) | s2;				\
   } while (0)