From 34ae336f3fae93ef9372881d545c817bce383041 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 20 Jul 2012 16:17:28 -0400 Subject: [PATCH] [Indic] Improve Reph AfterMain positioning Fixes 20 out of 48 failing Oriya tests. Failure rate down to 0.066% now. --- src/hb-ot-shape-complex-indic.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 228fc63..0316691 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -975,8 +975,7 @@ final_reordering_syllable (hb_buffer_t *buffer, { new_reph_pos = base; /* XXX Skip potential pre-base reordering Ra. */ - while (new_reph_pos < end && - !( FLAG (info[new_reph_pos + 1].indic_position()) & (FLAG (POS_BELOW_C) | FLAG (POS_POST_C) | FLAG (POS_AFTER_POST) | FLAG (POS_SMVD)))) + while (new_reph_pos + 1 < end && info[new_reph_pos + 1].indic_position() <= POS_AFTER_MAIN) new_reph_pos++; if (new_reph_pos < end) goto reph_move; -- 2.7.4