Merge pull request #1553 from Fleurer/fix1550-cont

fix 3a4c8e2
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-10-30 17:07:41 -07:00
+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;
}