aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-11-10 00:24:40 +0000
committerKenichi Handa1998-11-10 00:24:40 +0000
commitc61bca6a2858108256801abf8f87caaa3cee1116 (patch)
tree75c15b6c67b878e2c758f937049bdbf3038718ed /src
parentde54b0d5ecbfdc1f0ba37e2148d65ff7a6dd22aa (diff)
downloademacs-c61bca6a2858108256801abf8f87caaa3cee1116.tar.gz
emacs-c61bca6a2858108256801abf8f87caaa3cee1116.zip
(CATEGORY_SET): Adjusted for the change of cmpchar_component.
(CATEGORY_SET): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/category.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/category.h b/src/category.h
index 5129d16aa2e..644e6056523 100644
--- a/src/category.h
+++ b/src/category.h
@@ -106,7 +106,7 @@ extern Lisp_Object _temp_category_set;
106 else \ 106 else \
107 temp = Faref (table, \ 107 temp = Faref (table, \
108 make_number (COMPOSITE_CHAR_P (c) \ 108 make_number (COMPOSITE_CHAR_P (c) \
109 ? cmpchar_component (c, 0) : (c))); \ 109 ? cmpchar_component ((c), 0, 1) : (c))); \
110 temp; }) 110 temp; })
111#else 111#else
112#define CATEGORY_SET(c) \ 112#define CATEGORY_SET(c) \
@@ -114,7 +114,7 @@ extern Lisp_Object _temp_category_set;
114 ? Faref (current_buffer->category_table, make_number ((unsigned char) c)) \ 114 ? Faref (current_buffer->category_table, make_number ((unsigned char) c)) \
115 : Faref (current_buffer->category_table, \ 115 : Faref (current_buffer->category_table, \
116 make_number (COMPOSITE_CHAR_P (c) \ 116 make_number (COMPOSITE_CHAR_P (c) \
117 ? cmpchar_component ((c), 0) : (c)))) 117 ? cmpchar_component ((c), 0, 1) : (c))))
118#endif 118#endif
119 119
120/* Return the doc string of CATEGORY in category table TABLE. */ 120/* Return the doc string of CATEGORY in category table TABLE. */