This commit is contained in:
Kovid Goyal 2018-01-17 21:59:10 +05:30
parent 33ed873997
commit ed700ff830
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -5,7 +5,7 @@
static inline bool static inline bool
is_combining_char(uint32_t ch) { is_combining_char(uint32_t ch) {
return uc_is_general_category_withtable(ch, UC_CATEGORY_MASK_Mc | UC_CATEGORY_MASK_Me | UC_CATEGORY_MASK_Mn); return uc_is_general_category_withtable(ch, UC_CATEGORY_MASK_M);
} }