1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-26 07:03:16 +00:00

Fix parser regression.

This commit is contained in:
Calvin Rose 2019-01-07 14:49:38 -05:00
parent d64a57297d
commit aa079e3145

View File

@ -494,6 +494,9 @@ static int root(JanetParser *p, JanetParseState *state, uint8_t c) {
} else {
ds = close_struct(p, state);
}
} else {
p->error = "mismatched delimiter";
return 1;
}
popstate(p, ds);
}