From ecb98babbaa065940b40ca8954a454f0e2cdcff0 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 22 May 2014 19:36:21 -0400 Subject: [PATCH] [indic] Support U+1CE2..U+1CE8 --- src/hb-ot-shape-complex-indic.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 023d08983..60e4583fe 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -211,6 +211,10 @@ set_indic_properties (hb_glyph_info_t &info) /* The following act like consonants. */ else if (unlikely (hb_in_range (u, 0x1CF5, 0x1CF6))) cat = OT_C; + /* TODO: The following should only be allowed after a Visarga. + * For now, just treat them like regular tone marks. */ + else if (unlikely (hb_in_range (u, 0x1CE2, 0x1CE8))) + cat = OT_A; if (unlikely (u == 0x17D1)) cat = OT_X;