Merge branch 'master' of github.com:mruby/mruby

This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-10-31 11:55:06 +09: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;
}