summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-21 19:18:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-21 19:18:02 +0000
commit39cac947b18894650fc166fb33ea66fe79c1d1a8 (patch)
treebff0ffa6a3ef69d36556b048aff8a9b6439578d9 /parse.y
parentc94f8ab926a524a633a739e8a2e69016e18354d2 (diff)
* parse.y (aref_args): should pass expanded list. [ruby-core:02793]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index d4d34216be..deda89b8cb 100644
--- a/parse.y
+++ b/parse.y
@@ -1235,7 +1235,7 @@ aref_args : none
| tSTAR arg opt_nl
{
value_expr($2);
- $$ = newline_node(NEW_SPLAT($2));
+ $$ = NEW_LIST(NEW_SPLAT($2));
}
;