From e0de95f40244924cb8f9f7abca7f53117044a0eb Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 27 May 2014 17:58:34 -0400 Subject: [PATCH] [indic] Treat U+00D7 MULTIPLICATION SIGN as placeholder --- src/hb-ot-shape-complex-indic.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 5d8613ced..ae903839a 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -242,6 +242,7 @@ set_indic_properties (hb_glyph_info_t &info) if (unlikely (u == 0x17D2)) cat = OT_Coeng; /* Khmer coeng */ else if (unlikely (u == 0x200C)) cat = OT_ZWNJ; else if (unlikely (u == 0x200D)) cat = OT_ZWJ; + else if (unlikely (u == 0x00D7)) cat = OT_PLACEHOLDER; else if (unlikely (u == 0x25CC)) cat = OT_DOTTEDCIRCLE; else if (unlikely (u == 0x0A71)) cat = OT_SM; /* GURMUKHI ADDAK. Move it to the end. */ else if (unlikely (u == 0xA982)) cat = OT_SM; /* Javanese repha. */