From 36cc28e4446e77ab4d8d48055e9715f1ae26c68e Mon Sep 17 00:00:00 2001 From: mikeb Date: Tue, 1 Sep 2015 16:20:55 +0000 Subject: [PATCH] increment the line number after the line continuation; ok tedu --- parse.y | 2 ++ 1 file changed, 2 insertions(+) diff --git a/parse.y b/parse.y index f4309a3..9ddca34 100644 --- a/parse.y +++ b/parse.y @@ -278,6 +278,8 @@ repeat: if (escape) { nonkw = 1; escape = 0; + yylval.colno = 0; + yylval.lineno++; continue; } goto eow; -- 2.39.2