parse.y: Fix excessed_comma event

I believe that the assignment to `$$` was just forgotten.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2018-01-19 10:26:12 +00:00
parent de9d264026
commit 9eb4344a16
1 changed files with 1 additions and 1 deletions

View File

@ -3053,7 +3053,7 @@ block_param : f_arg ',' f_block_optarg ',' f_rest_arg opt_block_args_tail
$$ = new_args(p, $1, Qnone, 1, Qnone, new_args_tail(p, Qnone, Qnone, Qnone, &@1), &@$);
/*%%%*/
/*%
dispatch1(excessed_comma, $$);
$$ = dispatch1(excessed_comma, $$);
%*/
}
| f_arg ',' f_rest_arg ',' f_arg opt_block_args_tail