Skip to content

Commit

Permalink
support CAPIT & ALLCAPIT
Browse files Browse the repository at this point in the history
  • Loading branch information
krangelov committed Jan 4, 2024
1 parent c327cf0 commit 24b96ba
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/runtime/c/pgf/parser.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,13 @@ void PgfLRTableMaker::symbol(State *state, Fold fold, Item *item, PgfSymbol sym)
}
break;
}
case PgfSymbolCAPIT::tag:
case PgfSymbolALLCAPIT::tag: {
// We just ignore CAPIT && ALLCAPIT during parsing
item->sym_idx++;
process(state,fold,item);
break;
}
default:
if (item->ref_cnt == 0)
delete item;
Expand Down

0 comments on commit 24b96ba

Please sign in to comment.