Merge branch 'obsd-master'

pull/2270/head
Thomas Adam 2020-06-04 18:01:17 +01:00
commit c8bddfba2b
1 changed files with 3 additions and 1 deletions

View File

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