src/hb-ot-shape-complex-indic.cc | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit 26c836e53d55a2e2d4c17fd9ea1884eec33ce015 Author: Behdad Esfahbod <[email protected]> Date: Wed May 21 18:35:48 2014 -0400 [indic] Handle "Cantillation marks for the Samaveda" diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 6901fd8..6fea164 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -197,6 +197,9 @@ set_indic_properties (hb_glyph_info_t &info) */ if (unlikely (hb_in_range<hb_codepoint_t> (u, 0x0951, 0x0954))) cat = OT_A; + /* Same for the following... */ + if (unlikely (hb_in_range<hb_codepoint_t> (u, 0xA8E0, 0xA8F1))) + cat = OT_A; if (unlikely (u == 0x17D1)) cat = OT_X; _______________________________________________ HarfBuzz mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/harfbuzz
