Support `&.` at the beginning of the line.

parent d895c5fe
...@@ -4762,6 +4762,15 @@ parser_yylex(parser_state *p) ...@@ -4762,6 +4762,15 @@ parser_yylex(parser_state *p)
pushback(p, '.'); pushback(p, '.');
goto retry; goto retry;
} }
pushback(p, c);
goto normal_newline;
case '&':
if (peek(p, '.')) {
pushback(p, '&');
goto retry;
}
pushback(p, c);
goto normal_newline;
case -1: /* EOF */ case -1: /* EOF */
case -2: /* end of a file */ case -2: /* end of a file */
goto normal_newline; goto normal_newline;
......
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