提交 d33f674c 编写于 作者: B Behdad Esfahbod

Add Mongolian variation selectors

上级 d6387757
......@@ -33,8 +33,9 @@
static inline hb_bool_t
is_variation_selector (hb_codepoint_t unicode)
{
return (unicode >= 0xFE00 && unicode <= 0xFE0F) ||
(unicode >= 0xE0100 && unicode <= 0xE01EF);
return HB_UNLIKELY ((unicode >= 0x180B && unicode <= 0x180D) || /* MONGOLIAN FREE VARIATION SELECTOR ONE..THREE */
(unicode >= 0xFE00 && unicode <= 0xFE0F) || /* VARIATION SELECTOR-1..16 */
(unicode >= 0xE0100 && unicode <= 0xE01EF)); /* VARIATION SELECTOR-17..256 */
}
static void
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册