1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-28 01:00:52 -07:00

(CATEGORY_SET): Adjusted for the change of cmpchar_component.

(CATEGORY_SET): Likewise.
This commit is contained in:
Kenichi Handa 1998-11-10 00:24:40 +00:00
parent de54b0d5ec
commit c61bca6a28

View file

@ -106,7 +106,7 @@ extern Lisp_Object _temp_category_set;
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 @@ extern Lisp_Object _temp_category_set;
? 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. */