From b14ec5333b8f417f752fc1ac3ebcc004aa61d973 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 3 Jan 2003 14:28:35 +0000 Subject: [PATCH] ("@oline@"): Output lineno+1, not lineno. --- src/scan-skel.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scan-skel.l b/src/scan-skel.l index fd9bd4c..03577b5 100644 --- a/src/scan-skel.l +++ b/src/scan-skel.l @@ -69,7 +69,7 @@ int skel_lex (void); "@{" fputc ('[', yyout); "@}" fputc (']', yyout); -"@oline@" fprintf (yyout, "%d", lineno); +"@oline@" fprintf (yyout, "%d", lineno + 1); "@ofile@" QPUTS (outname); "@output_parser_name@" QPUTS (parser_file_name); "@output_header_name@" QPUTS (spec_defines_file); -- 2.7.4