Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2020-06-04 18:01:17 +01:00

View File

@ -535,9 +535,11 @@ argument_statements : statement '}'
{
$$ = $1;
}
| statements '}'
| statements statement '}'
{
$$ = $1;
TAILQ_CONCAT($$, $2, entry);
free($2);
}
%%