# HG changeset patch # User Kenichi Handa # Date 910657480 0 # Node ID 32b916f68c794fe298446d984a535126853ec3ab # Parent 23faf76ec3250ef05b5711cb0f4a672ca1799204 (CATEGORY_SET): Adjusted for the change of cmpchar_component. (CATEGORY_SET): Likewise. diff -r 23faf76ec325 -r 32b916f68c79 src/category.h --- a/src/category.h Tue Nov 10 00:24:40 1998 +0000 +++ b/src/category.h Tue Nov 10 00:24:40 1998 +0000 @@ -106,7 +106,7 @@ else \ temp = Faref (table, \ make_number (COMPOSITE_CHAR_P (c) \ - ? cmpchar_component (c, 0) : (c))); \ + ? cmpchar_component ((c), 0, 1) : (c))); \ temp; }) #else #define CATEGORY_SET(c) \ @@ -114,7 +114,7 @@ ? Faref (current_buffer->category_table, make_number ((unsigned char) c)) \ : Faref (current_buffer->category_table, \ make_number (COMPOSITE_CHAR_P (c) \ - ? cmpchar_component ((c), 0) : (c)))) + ? cmpchar_component ((c), 0, 1) : (c)))) #endif /* Return the doc string of CATEGORY in category table TABLE. */