Fix line report with input_line

This commit is contained in:
Pascal Bart
2001-09-22 21:43:05 +00:00
parent 6f9344dadf
commit 577c6c8499

View File

@@ -992,7 +992,7 @@ output_parser (const char *skel_filename, struct obstack *oout)
else if (!strcmp (muscle_key, "line"))
obstack_fgrow1 (oout, "%d", line + 1);
else if (!strcmp (muscle_key, "input_line"))
obstack_fgrow1 (oout, "%d", lineno + 1);
obstack_fgrow1 (oout, "%d", lineno);
else if (!strcmp (muscle_key, "action"))
{
size_t size = obstack_object_size (&action_obstack);