summaryrefslogtreecommitdiff
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
commit0cc90b386573acd30b2256c7ff72e7da10d77bc3 (patch)
tree7b412536c295599f4deaefa9d88cac41057c7b09 /parse.y
parent50e6933b094ea9e5851617e7e464aa1f4c332a00 (diff)
* parse.y: removed garbage spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 12265a8b35..deedde8b67 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;
%*/
}
;