diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-30 03:40:11 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-30 03:40:11 +0000 |
| commit | 4f61c1c5c12d59269fa9adbf4803f9413f53a380 (patch) | |
| tree | a81ccfcd2428bea9f029b53ac0f9d429a3e345c6 | |
| parent | b724f831cf9c70b848056634fa77ed2184455aec (diff) | |
| download | ruby-4f61c1c5c12d59269fa9adbf4803f9413f53a380.tar.gz ruby-4f61c1c5c12d59269fa9adbf4803f9413f53a380.tar.xz ruby-4f61c1c5c12d59269fa9adbf4803f9413f53a380.zip | |
* eval.c (rb_eval): fix commit miss. [ruby-dev:29707]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | gc.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Oct 30 12:34:02 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_eval): fix commit miss. [ruby-dev:29707] + Mon Oct 30 11:15:40 2006 Yukihiro Matsumoto <matz@ruby-lang.org> * sprintf.c (rb_str_format): should preserve leading zero @@ -847,6 +847,7 @@ gc_mark_children(VALUE ptr, int lev) case NODE_OPT_N: case NODE_EVSTR: case NODE_UNDEF: + case NODE_POSTEXE: ptr = (VALUE)obj->as.node.u2.node; goto again; @@ -892,7 +893,6 @@ gc_mark_children(VALUE ptr, int lev) case NODE_ERRINFO: case NODE_ATTRSET: case NODE_BLOCK_ARG: - case NODE_POSTEXE: break; case NODE_ALLOCA: mark_locations_array((VALUE*)obj->as.node.u1.value, |
