* parse.y (f_larglist): mistake in syntax rule. [ruby-core:05535]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2005-08-08 01:21:48 +00:00
parent ec46711668
commit 0b1038f514
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Aug 8 01:26:37 2005 Mauricio Fernandez <mfp@acm.org>
* parse.y (f_larglist): mistake in syntax rule. [ruby-core:05535]
Mon Aug 8 05:16:55 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/ossl.c (ossl_raise): should use ERR_peek_last_error

View File

@ -3208,7 +3208,7 @@ f_larglist : '(' f_args opt_bv_decl rparen
$$ = dispatch4(params, $1, Qnil, Qnil, Qnil);
%*/
}
| f_arg ',' opt_f_block_arg f_rest_arg opt_bv_decl
| f_arg ',' f_rest_arg opt_f_block_arg opt_bv_decl
{
/*%%%*/
$$ = NEW_LAMBDA(new_args($1, 0, $3, $4), $5);