column adjustment was wrong for pushed back characters

This commit is contained in:
Yukihiro Matsumoto
2012-05-28 08:50:10 +09:00
parent 03a53e71c5
commit c14e440897
+1 -1
View File
@@ -3040,8 +3040,8 @@ nextc(parser_state *p)
if (c == '\n') {
// must understand heredoc
}
p->column++;
}
p->column++;
return c;
}