From c14e440897b2cf8c0769f00d9a14810b11ca9a99 Mon Sep 17 00:00:00 2001 From: Yukihiro Matsumoto Date: Mon, 28 May 2012 08:50:10 +0900 Subject: column adjustment was wrong for pushed back characters --- src/parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parse.y') diff --git a/src/parse.y b/src/parse.y index 887ba0134..37a16c614 100644 --- a/src/parse.y +++ b/src/parse.y @@ -3040,8 +3040,8 @@ nextc(parser_state *p) if (c == '\n') { // must understand heredoc } - p->column++; } + p->column++; return c; } -- cgit v1.2.3