Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam 2019-05-30 13:02:26 +01:00
commit 2df757521a

View File

@ -361,7 +361,7 @@ command : assignment TOKEN
$$ = xcalloc(1, sizeof *$$); $$ = xcalloc(1, sizeof *$$);
$$->name = $2; $$->name = $2;
$$->line = ps->input->line - 1; $$->line = ps->input->line;
} }
| assignment TOKEN arguments | assignment TOKEN arguments
@ -370,7 +370,7 @@ command : assignment TOKEN
$$ = xcalloc(1, sizeof *$$); $$ = xcalloc(1, sizeof *$$);
$$->name = $2; $$->name = $2;
$$->line = ps->input->line - 1; $$->line = ps->input->line;
$$->argc = $3.argc; $$->argc = $3.argc;
$$->argv = $3.argv; $$->argv = $3.argv;