summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-29 14:05:40 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-29 14:05:40 +0000
commit4df2cb80531c7cd4b10b0dea26f4687c4f74ff30 (patch)
tree80aa6c44314c4854b4ac8d2f2a288bce08e0cd96 /parse.y
parentd7ac2f0cd22999401c6057e7c05c87f474e22306 (diff)
* parse.y: use ARGSPUSH instead of ARGSCAT to prevent too much
splat expansion. * eval.c (when_check): need to handle ARGSPUSH as well. * eval.c (block_orphan): lambda and proc from method are always orphan. * gc.c (gc_mark_children): proper marking for NODE_BLOCK_PASS and NODE_LAMBDA. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10431 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 9089adff36..727bfb5189 100644
--- a/parse.y
+++ b/parse.y
@@ -7291,7 +7291,7 @@ arg_append(NODE *node1, NODE *node2)
node1->nd_head = arg_append(node1->nd_head, node2);
return node1;
default:
- return NEW_ARGSCAT(node1, node2);
+ return NEW_ARGSPUSH(node1, node2);
}
}