From 54f27e448cfb9e023a8d552f02ffb0cb745f3544 Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Sat, 18 Dec 2021 16:12:21 +0100 Subject: [PATCH] Parser: Skip inner bracket separators after every list element Forgot that here. --- src/parser.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/parser.c b/src/parser.c index 9e36ba4..1a47741 100644 --- a/src/parser.c +++ b/src/parser.c @@ -816,6 +816,10 @@ parse_list( case PF_ERROR: goto error; } + + if (!skip_inner_bracket_separators(p)) { + goto error; + } } maybe_end: