* parse.y: removed garbage spaces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-05-02 00:39:34 +00:00
parent 50e6933b09
commit 0cc90b3865

View File

@ -3450,7 +3450,7 @@ exc_list : arg_value
/*%%%*/ /*%%%*/
$$ = NEW_LIST($1); $$ = NEW_LIST($1);
/*% /*%
$$ = rb_ary_new3(1, $1); $$ = rb_ary_new3(1, $1);
%*/ %*/
} }
| mrhs | mrhs
@ -4139,7 +4139,7 @@ f_arg : f_arg_item
$$ = rb_ary_push($1, $3); $$ = rb_ary_push($1, $3);
%*/ %*/
} }
; ;
f_opt : tIDENTIFIER '=' arg_value f_opt : tIDENTIFIER '=' arg_value
{ {
@ -4397,7 +4397,7 @@ none : /* none */
/*%%%*/ /*%%%*/
$$ = 0; $$ = 0;
/*% /*%
$$ = Qundef; $$ = Qundef;
%*/ %*/
} }
; ;