diff options
Diffstat (limited to 'src/parse.y')
| -rw-r--r-- | src/parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.y b/src/parse.y index c926664cf..1cb8741f2 100644 --- a/src/parse.y +++ b/src/parse.y @@ -1050,7 +1050,7 @@ bodystmt : compstmt } else if ($3) { yywarn(p, "else without rescue is useless"); - $$ = append($$, $3); + $$ = push($1, $3); } else { $$ = $1; |
