Emchar load_char_decoding_entry_maybe (Lisp_Object ccs, int code_point);
#endif
-Emchar decode_defined_char (Lisp_Object charset, int code_point);
+Emchar decode_defined_char (Lisp_Object charset, int code_point,
+ int without_inheritance);
-INLINE_HEADER Emchar DECODE_CHAR (Lisp_Object charset, int code_point);
INLINE_HEADER Emchar
-DECODE_CHAR (Lisp_Object charset, int code_point)
+DECODE_CHAR (Lisp_Object charset, int code_point, int without_inheritance);
+INLINE_HEADER Emchar
+DECODE_CHAR (Lisp_Object charset, int code_point, int without_inheritance)
{
- Emchar char_id = decode_defined_char (charset, code_point);
+ Emchar char_id
+ = decode_defined_char (charset, code_point, without_inheritance);
if (char_id >= 0)
return char_id;
MAKE_CHAR (Lisp_Object charset, int c1, int c2)
{
if (XCHARSET_DIMENSION (charset) == 1)
- return DECODE_CHAR (charset, c1);
+ return DECODE_CHAR (charset, c1, 0);
else
- return DECODE_CHAR (charset, (c1 << 8) | c2);
+ return DECODE_CHAR (charset, (c1 << 8) | c2, 0);
}
extern Lisp_Object Vcharacter_attribute_table;