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 #ifdef PARSER_DEBUG
MetaItem *res = this; MetaItem *res = this;
while (res->arg != 0) { while (res->arg != 0) {
printer->puts(" "); printer->puts(" (");
m->match_expr(printer, res->arg); m->match_expr(printer, res->arg);
printer->puts(")");
res = res->next; res = res->next;
} }
#endif #endif