summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-06 17:59:53 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-06 17:59:53 +0000
commit8a4abe47cacd613a2d77287df75245fef6693246 (patch)
treee16415a5c89603a9adb4f968996d79f559c0f157 /gc.c
parent0dd4fde745f2c33a473ea3ee54b01a1d24d4586c (diff)
* parse.y (stmt): rhs of multiple assignment should not be
expanded using "to_a". [ruby-dev:21527] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index 0eb2e096c7..b3200d2927 100644
--- a/gc.c
+++ b/gc.c
@@ -755,6 +755,7 @@ rb_gc_mark_children(ptr)
case NODE_COLON2:
case NODE_ARGS:
case NODE_SPLAT:
+ case NODE_TO_ARY:
case NODE_SVALUE:
ptr = (VALUE)obj->as.node.u1.node;
goto again;