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:
parent
de54b0d5ec
commit
c61bca6a28
1 changed files with 2 additions and 2 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue