From f47cf1f12dd1fa3cd3aa84502139caca9d469af8 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 21 Feb 2015 11:45:22 +0300 Subject: [PATCH] Minor --- src/hb-ot-layout.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-ot-layout.cc b/src/hb-ot-layout.cc index f29c52dfa..b1e69e89f 100644 --- a/src/hb-ot-layout.cc +++ b/src/hb-ot-layout.cc @@ -841,7 +841,7 @@ apply_forward (OT::hb_apply_context_t *c, { if (accel.may_have (buffer->cur().codepoint) && (buffer->cur().mask & c->lookup_mask) && - c->check_glyph_property (&c->buffer->cur(), c->lookup_props) && + c->check_glyph_property (&buffer->cur(), c->lookup_props) && obj.apply (c)) ret = true; else @@ -862,7 +862,7 @@ apply_backward (OT::hb_apply_context_t *c, { if (accel.may_have (buffer->cur().codepoint) && (buffer->cur().mask & c->lookup_mask) && - c->check_glyph_property (&c->buffer->cur(), c->lookup_props) && + c->check_glyph_property (&buffer->cur(), c->lookup_props) && obj.apply (c)) ret = true; /* The reverse lookup doesn't "advance" cursor (for good reason). */