(DECODE_DEFINED_CHAR): Don't check `XCHARSET_GRAPHIC(ccs)'.
authortomo <tomo>
Wed, 13 Feb 2002 03:48:50 +0000 (03:48 +0000)
committertomo <tomo>
Wed, 13 Feb 2002 03:48:50 +0000 (03:48 +0000)
src/char-ucs.h

index 0fb5e06..dddb82e 100644 (file)
@@ -685,10 +685,7 @@ DECODE_DEFINED_CHAR (Lisp_Object ccs, int code_point)
       EQ (decoding_table, Qunbound) ||
       NILP (decoding_table) )
     {
-      if (XCHARSET_GRAPHIC (ccs) == 1)
-       return load_char_decoding_entry_maybe (ccs, code_point & 0x7F7F7F7F);
-      else
-       return load_char_decoding_entry_maybe (ccs, code_point);
+      return load_char_decoding_entry_maybe (ccs, code_point);
     }
 #endif
   else