fix the printing of meta items

This commit is contained in:
Krasimir Angelov
2022-10-03 11:48:40 +02:00
parent 9f2cbe70fe
commit c15b5271a9

View File

@@ -553,8 +553,9 @@ public:
#ifdef PARSER_DEBUG
MetaItem *res = this;
while (res->arg != 0) {
printer->puts(" ");
printer->puts(" (");
m->match_expr(printer, res->arg);
printer->puts(")");
res = res->next;
}
#endif