src/hb-ot-shape-complex-indic.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 0682ddd05c22a400ff5ce97d4ea4b52a18b845ae Author: Behdad Esfahbod <[email protected]> Date: Tue Apr 8 16:03:35 2014 -0700 [indic] Support U+17DD KHMER SIGN ATTHACAN As requested by Martin Hosken on the list. diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 1e07d33..942e7b9 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -201,7 +201,8 @@ set_indic_properties (hb_glyph_info_t &info) if (unlikely (u == 0x17D1)) cat = OT_X; if (cat == OT_X && - unlikely (hb_in_range<hb_codepoint_t> (u, 0x17CB, 0x17D3))) /* Khmer Various signs */ + unlikely (hb_in_range<hb_codepoint_t> (u, 0x17CB, 0x17D3) || + u == 0x17DD)) /* Khmer Various signs */ { /* These are like Top Matras. */ cat = OT_M; _______________________________________________ HarfBuzz mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/harfbuzz
