From: tomo Date: Mon, 20 Mar 2000 09:34:05 +0000 (+0000) Subject: (c2mu): Fix problem with UTF-2000. X-Git-Tag: r21-2-27-utf-2000-0_15-0~55 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=f87ae9752321bc9d36184a5b880dd58eedef1172;p=chise%2Fxemacs-chise.git (c2mu): Fix problem with UTF-2000. --- diff --git a/src/mule-canna.c b/src/mule-canna.c index 839ab98..26f6d0e 100644 --- a/src/mule-canna.c +++ b/src/mule-canna.c @@ -1791,8 +1791,9 @@ c2mu (unsigned char *cp, int l, unsigned char *mp) } else if (ch == ISO_CODE_SS3) { + ch = *cp++; chr = MAKE_CHAR (Vcharset_japanese_jisx0212, - (*cp++) & 0x7f, (*cp++) & 0x7f); + ch & 0x7f, (*cp++) & 0x7f); } else if (ch & 0x80) {