From 8f0624bc300b38f3a86b1301f377f8e0cb1484da Mon Sep 17 00:00:00 2001 From: krasimir Date: Fri, 6 Mar 2015 15:18:50 +0000 Subject: [PATCH] remove the meta_item variable from the parse state --- src/runtime/c/pgf/parser.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/runtime/c/pgf/parser.c b/src/runtime/c/pgf/parser.c index 914269c93..be0b1b361 100644 --- a/src/runtime/c/pgf/parser.c +++ b/src/runtime/c/pgf/parser.c @@ -72,7 +72,6 @@ struct PgfParseState { PgfParseState* next; PgfItemBuf* agenda; - PgfItem* meta_item; PgfContsMap* conts_map; PgfGenCatMap* generated_cats; @@ -1214,7 +1213,6 @@ pgf_new_parse_state(PgfParsing* ps, size_t start_offset, PgfParseState* state = gu_new(PgfParseState, ps->pool); state->next = *pstate; state->agenda = gu_new_buf(PgfItem*, ps->pool); - state->meta_item = NULL; state->generated_cats = gu_new_addr_map(PgfItemConts*, PgfCCat*, &gu_null_struct, ps->pool); state->conts_map = gu_new_addr_map(PgfCCat*, PgfItemContss*, &gu_null_struct, ps->pool); state->needs_bind = (bind_type == BIND_NONE) &&