mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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:
parent
de9d264026
commit
9eb4344a16
1 changed files with 1 additions and 1 deletions
2
parse.y
2
parse.y
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue