* parse.y: remove "//" type comment.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-08-15 05:22:44 +00:00
parent aca2aa2457
commit fc5885aa7a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Wed Aug 15 14:22:05 2007 Koichi Sasada <ko1@atdot.net>
* parse.y: remove "//" type comment.
Wed Aug 15 13:42:15 2007 Koichi Sasada <ko1@atdot.net>
* parse.y: fix rules around f_margs. "make test" passes all tests.

View File

@ -3001,7 +3001,7 @@ for_var : lhs
f_marg : f_norm_arg
{
/*%%%*/
$$ = assignable($1, 0); //NEW_LIST(assignable($1, 0));
$$ = assignable($1, 0);
/*%
$$ = dispatch1(mlhs_paren, $1);
%*/
@ -3009,7 +3009,7 @@ f_marg : f_norm_arg
| tLPAREN f_margs rparen
{
/*%%%*/
$$ = $2; //NEW_LIST($2);
$$ = $2;
/*%
$$ = dispatch1(mlhs_paren, $2);
%*/