From: tomo Date: Wed, 26 Dec 2001 18:23:53 +0000 (+0000) Subject: (charset_code_point): Fixed. X-Git-Tag: r21-2-43-utf-2000-0_18-n3~10 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ce39a01b94f78d2106be9de60565925955c66c84;p=chise%2Fxemacs-chise.git.1 (charset_code_point): Fixed. --- diff --git a/src/mule-charset.c b/src/mule-charset.c index f04a876..db53d93 100644 --- a/src/mule-charset.c +++ b/src/mule-charset.c @@ -1106,7 +1106,7 @@ charset_code_point (Lisp_Object charset, Emchar ch) return (row << 8) | cell; } else - return code; + return code - min + XCHARSET_CODE_OFFSET (charset); } } }