Fixed wrong behavior on `..` at the beginning of the line.

parent c1901539
......@@ -4758,8 +4758,7 @@ parser_yylex(parser_state *p)
space_seen = 1;
break;
case '.':
if ((c = nextc(p)) != '.') {
pushback(p, c);
if (!peek(p, '.')) {
pushback(p, '.');
goto retry;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment