unfortunately the previouse commit is incorrect, which still concate the
keywords, but like this:

      method='"end\nb"' (201)
This commit is contained in:
fleuria
2013-10-30 16:52:42 +08:00
parent abe6db9454
commit c64cae4d2d
+2 -3
View File
@@ -3338,9 +3338,8 @@ nextc(parser_state *p)
mrbc_context *cxt = p->cxt;
if (cxt->partial_hook(p) < 0) return -1;
p->cxt = NULL;
tokadd(p, '\n');
c = nextc(p);
c = '\n';
p->lineno = 1;
p->cxt = cxt;
return c;
}