[indic] Allow decimal and Brahmi digits as placeholders
Tests: U+0967,0951 U+0031,093F
This commit is contained in:
parent
e8b5d64039
commit
7977ca17aa
|
@ -254,6 +254,10 @@ set_indic_properties (hb_glyph_info_t &info)
|
|||
if (_hb_glyph_info_get_general_category (&info) == HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK)
|
||||
cat = OT_N;
|
||||
}
|
||||
/* Decimal and Brahmi numbers. */
|
||||
else if (unlikely (_hb_glyph_info_get_general_category (&info) ==
|
||||
HB_UNICODE_GENERAL_CATEGORY_DECIMAL_NUMBER ||
|
||||
hb_in_range<hb_codepoint_t> (u, 0x11052, 0x11065))) cat = OT_PLACEHOLDER;
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -32,3 +32,5 @@
|
|||
कि
|
||||
ऽं
|
||||
रुँः
|
||||
1ि
|
||||
१॑
|
||||
|
|
Loading…
Reference in New Issue