[indic] Treat U+A8E0..A8F1 as OT_A instead of OT_VD
Apparently they can intermix with other OT_A. Test: U+0915,A8E2,1CD0
This commit is contained in:
parent
6ae13f257c
commit
17c3b809f4
|
@ -197,7 +197,7 @@ set_indic_properties (hb_glyph_info_t &info)
|
|||
cat = OT_SM;
|
||||
/* Cantillation marks. */
|
||||
else if (unlikely (hb_in_range<hb_codepoint_t> (u, 0xA8E0, 0xA8F1)))
|
||||
cat = OT_VD;
|
||||
cat = OT_A;
|
||||
/* The following act like consonants. */
|
||||
else if (unlikely (hb_in_ranges<hb_codepoint_t> (u, 0x0A72, 0x0A73,
|
||||
0x1CF5, 0x1CF6)))
|
||||
|
|
Loading…
Reference in New Issue