From ed700ff830735a59f0a641e96edc578b2786e3c3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 17 Jan 2018 21:59:10 +0530 Subject: [PATCH] ... --- kitty/unicode-data.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/unicode-data.h b/kitty/unicode-data.h index 056b9f347..1b1bad5a3 100644 --- a/kitty/unicode-data.h +++ b/kitty/unicode-data.h @@ -5,7 +5,7 @@ static inline bool 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); }