From 131e17ff9ae792cafa7a500043acb373802ee872 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 22 May 2014 19:32:51 -0400 Subject: [PATCH] [indic] Support U+1CF5,1CF6 --- src/hb-ot-shape-complex-indic.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 5649c6962..80ac99356 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -208,6 +208,9 @@ set_indic_properties (hb_glyph_info_t &info) /* Cantillation marks. */ else if (unlikely (hb_in_range (u, 0xA8E0, 0xA8F1))) cat = OT_VD; + /* The following act like consonants. */ + else if (unlikely (hb_in_range (u, 0x1CF5, 0x1CF6))) + cat = OT_C; if (unlikely (u == 0x17D1)) cat = OT_X;