fix part of #53, assertion failure on invalid dotted list
This commit is contained in:
parent
dc62177323
commit
d3d3c35ffa
4
read.c
4
read.c
|
@ -539,10 +539,12 @@ static void read_list(value_t *pval, value_t label)
|
||||||
t = peek();
|
t = peek();
|
||||||
if (ios_eof(F))
|
if (ios_eof(F))
|
||||||
lerror(ParseError, "read: unexpected end of input");
|
lerror(ParseError, "read: unexpected end of input");
|
||||||
if (t != TOK_CLOSE)
|
if (t != TOK_CLOSE) {
|
||||||
|
take();
|
||||||
lerror(ParseError, "read: expected ')'");
|
lerror(ParseError, "read: expected ')'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
take();
|
take();
|
||||||
(void)POP();
|
(void)POP();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue