Parser: Skip inner bracket separators after every list element

Forgot that here.
This commit is contained in:
Laria 2021-12-18 16:12:21 +01:00
parent 632687b47d
commit 54f27e448c

View file

@ -816,6 +816,10 @@ parse_list(
case PF_ERROR:
goto error;
}
if (!skip_inner_bracket_separators(p)) {
goto error;
}
}
maybe_end: