From: tomo Date: Thu, 12 Jul 2001 04:00:13 +0000 (+0000) Subject: (Fdecode_builtin_char): Comment out regularization code for ISO-IR GR X-Git-Tag: r21-2-38-utf-2000-0_17-1~354 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=fa6acb0863257ba0c41f5acc354a3c340b7ac3de;p=chise%2Fxemacs-chise.git.1 (Fdecode_builtin_char): Comment out regularization code for ISO-IR GR representation. --- diff --git a/src/mule-charset.c b/src/mule-charset.c index 95ebb87..5b00fec 100644 --- a/src/mule-charset.c +++ b/src/mule-charset.c @@ -3165,8 +3165,10 @@ Make a builtin character from CHARSET and code-point CODE. charset = Fget_charset (charset); CHECK_INT (code); c = XINT (code); +#if 0 if (XCHARSET_GRAPHIC (charset) == 1) c &= 0x7F7F7F7F; +#endif c = decode_builtin_char (charset, c); return c ? make_char (c) : Fdecode_char (charset, code); }