From 9d0a5d8e96644394bbd0c344fb5d26098b7919c4 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 26 Apr 2008 08:32:23 +0000 Subject: * include/ruby/ruby.h, gc.c: remove T_BLOCK. * include/ruby/ruby.h: re-number T_xxx. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16201 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- gc.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'gc.c') diff --git a/gc.c b/gc.c index 877d9f35be..fea8a81cbb 100644 --- a/gc.c +++ b/gc.c @@ -1185,7 +1185,6 @@ gc_mark_children(VALUE ptr, int lev) case T_REGEXP: case T_FLOAT: case T_BIGNUM: - case T_BLOCK: break; case T_MATCH: @@ -1469,7 +1468,6 @@ obj_free(VALUE obj) break; case T_FLOAT: - case T_BLOCK: break; case T_VALUES: break; @@ -2254,7 +2252,6 @@ count_objects(int argc, VALUE *argv, VALUE os) case T_MATCH: type = ID2SYM(rb_intern("T_MATCH")); break; case T_SYMBOL: type = ID2SYM(rb_intern("T_SYMBOL")); break; case T_VALUES: type = ID2SYM(rb_intern("T_VALUES")); break; - case T_BLOCK: type = ID2SYM(rb_intern("T_BLOCK")); break; case T_UNDEF: type = ID2SYM(rb_intern("T_UNDEF")); break; case T_NODE: type = ID2SYM(rb_intern("T_NODE")); break; default: type = INT2NUM(i); break; -- cgit v1.2.3