From daf3234bdc82c669302599a76d2b14f5e69989db Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 10 May 2012 15:28:27 +0200 Subject: [PATCH] [Indic] Don't clear the mask for Reph This was removing the mandatory global 1 bit in the mask and hence disabling GPOS for Reph! --- src/hb-ot-shape-complex-indic.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 6790cc299..575880b42 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -382,7 +382,7 @@ initial_reordering_consonant_syllable (const hb_ot_map_t *map, hb_buffer_t *buff /* Reph */ if (has_reph) - info[start].mask = mask_array[RPHF]; + info[start].mask |= mask_array[RPHF]; /* Pre-base */ mask = mask_array[HALF] | mask_array[AKHN] | mask_array[CJCT];