(COMPOSE_ADD_CHAR): Use `CHAR_TABLEP' instead of `CHAR_ID_TABLE_P'.
authortomo <tomo>
Mon, 3 Sep 2001 16:02:09 +0000 (16:02 +0000)
committertomo <tomo>
Mon, 3 Sep 2001 16:02:09 +0000 (16:02 +0000)
src/text-coding.c

index 509cbb9..35e8523 100644 (file)
@@ -2226,7 +2226,7 @@ COMPOSE_ADD_CHAR(struct decoding_stream *str,
 {
   if (CODING_SYSTEM_DISABLE_COMPOSITION (str->codesys))
     DECODE_ADD_UCS_CHAR (character, dst);
-  else if (!CHAR_ID_TABLE_P (str->combining_table))
+  else if (!CHAR_TABLEP (str->combining_table))
     {
       Lisp_Object ret
        = get_char_id_table (XCHAR_TABLE(Vcharacter_composition_table),
@@ -2266,7 +2266,7 @@ COMPOSE_ADD_CHAR(struct decoding_stream *str,
              str->combining_table = ret;
            }
        }
-      else if (CHAR_ID_TABLE_P (ret))
+      else if (CHAR_TABLEP (ret))
        {
          str->combined_chars[str->combined_char_count++] = character;
          str->combining_table = ret;