From a79e3729351acdc124a043412ea576a9d16aab1d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 2 Dec 2023 07:09:16 -0500 Subject: [PATCH] [matcher] Simplify logic Another test fails now. Needs to be investigated. --- src/hb-ot-layout-gsubgpos.hh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/hb-ot-layout-gsubgpos.hh b/src/hb-ot-layout-gsubgpos.hh index 370c30fe5..48a3c83dd 100644 --- a/src/hb-ot-layout-gsubgpos.hh +++ b/src/hb-ot-layout-gsubgpos.hh @@ -522,10 +522,7 @@ struct hb_ot_apply_context_t : { idx = start_index_; end = c->buffer->len; - if (per_syllable) - matcher.set_syllable (start_index_ == c->buffer->idx ? c->buffer->cur().syllable () : 0); - else - matcher.set_syllable (0); + matcher.set_syllable (per_syllable ? c->buffer->cur().syllable () : 0); } #ifndef HB_OPTIMIZE_SIZE