(Fdecode_builtin_char): Comment out regularization code for ISO-IR GR
authortomo <tomo>
Thu, 12 Jul 2001 04:00:13 +0000 (04:00 +0000)
committertomo <tomo>
Thu, 12 Jul 2001 04:00:13 +0000 (04:00 +0000)
representation.

src/mule-charset.c

index 95ebb87..5b00fec 100644 (file)
@@ -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);
 }