summaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-07 20:28:27 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-07 20:28:27 +0000
commit7c6f1bb0db9877bd808b5a23f478edaa74b17aa8 (patch)
tree0ee8d8249c167842a36aae1ed843a8551f430404 /iseq.c
parent468e36e5d1ce9f040d3c022df3c9ee6c93096f4c (diff)
downloadruby-7c6f1bb0db9877bd808b5a23f478edaa74b17aa8.tar.gz
ruby-7c6f1bb0db9877bd808b5a23f478edaa74b17aa8.tar.xz
ruby-7c6f1bb0db9877bd808b5a23f478edaa74b17aa8.zip
* include/ruby/ruby.h:
rename "...TypeStruct" and "typed_struct" to "TypedData..." and "typeddata", respectively. rename rb_data_type_t#name to rb_data_type_t#wrap_struct_name. * error.c, gc.c, iseq.c, vm.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 6d5731de8..ac9f572ca 100644
--- a/iseq.c
+++ b/iseq.c
@@ -157,7 +157,7 @@ static VALUE
iseq_alloc(VALUE klass)
{
rb_iseq_t *iseq;
- return Data_Make_TypedStruct(klass, rb_iseq_t, &iseq_data_type, iseq);
+ return TypedData_Make_Struct(klass, rb_iseq_t, &iseq_data_type, iseq);
}
static void