From 91519c6a5b130ced569cedc3710ab395b663240d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 10 Feb 2018 13:35:17 -0600 Subject: [PATCH] [aat] Add buffer messages --- src/hb-aat-layout-morx-table.hh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/hb-aat-layout-morx-table.hh b/src/hb-aat-layout-morx-table.hh index fc834eb..2bb8089 100644 --- a/src/hb-aat-layout-morx-table.hh +++ b/src/hb-aat-layout-morx-table.hh @@ -614,9 +614,17 @@ struct Chain unsigned int count = subtableCount; for (unsigned int i = 0; i < count; i++) { + if (!c->buffer->message (c->font, "start chain subtable %d", c->lookup_index)) + { + c->set_lookup_index (c->lookup_index + 1); + continue; + } + subtable->apply (c); subtable = &StructAfter (*subtable); + (void) c->buffer->message (c->font, "end chain subtable %d", c->lookup_index); + c->set_lookup_index (c->lookup_index + 1); } } -- 2.7.4