summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-05-02 00:39:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-05-02 00:39:34 +0000
commitab8bc40b24e345d6218ae89b5389b73632f790e5 (patch)
tree7b412536c295599f4deaefa9d88cac41057c7b09 /parse.y
parent03c6c56fc2f40533ba5c4c6cb430ade5acb77540 (diff)
downloadruby-ab8bc40b24e345d6218ae89b5389b73632f790e5.tar.gz
ruby-ab8bc40b24e345d6218ae89b5389b73632f790e5.tar.xz
ruby-ab8bc40b24e345d6218ae89b5389b73632f790e5.zip
* parse.y: removed garbage spaces.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/parse.y b/parse.y
index 12265a8b3..deedde8b6 100644
--- a/parse.y
+++ b/parse.y
@@ -3450,7 +3450,7 @@ exc_list : arg_value
/*%%%*/
$$ = NEW_LIST($1);
/*%
- $$ = rb_ary_new3(1, $1);
+ $$ = rb_ary_new3(1, $1);
%*/
}
| mrhs
@@ -4139,7 +4139,7 @@ f_arg : f_arg_item
$$ = rb_ary_push($1, $3);
%*/
}
- ;
+ ;
f_opt : tIDENTIFIER '=' arg_value
{
@@ -4397,7 +4397,7 @@ none : /* none */
/*%%%*/
$$ = 0;
/*%
- $$ = Qundef;
+ $$ = Qundef;
%*/
}
;