summaryrefslogtreecommitdiffstats
path: root/object.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-12-08 07:10:38 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-12-08 07:10:38 +0000
commit0e98ca3fe090d5593fb1e552723da0b48784b0a2 (patch)
tree955e671a4900baec8f68290207252f37d19d9a3d /object.c
parent795ad7421b5624bfc77c1d86d5764bdd882bd4d4 (diff)
downloadruby-0e98ca3fe090d5593fb1e552723da0b48784b0a2.tar.gz
ruby-0e98ca3fe090d5593fb1e552723da0b48784b0a2.tar.xz
ruby-0e98ca3fe090d5593fb1e552723da0b48784b0a2.zip
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/object.c b/object.c
index c4283cb06..e7f202a5e 100644
--- a/object.c
+++ b/object.c
@@ -1203,6 +1203,7 @@ Init_Object()
rb_define_private_method(rb_cModule, "remove_const", rb_mod_remove_const, 1);
rb_define_private_method(rb_cModule, "method_added", rb_obj_dummy, 1);
rb_define_method(rb_cModule, "class_variables", rb_mod_class_variables, 0);
+ rb_define_private_method(rb_cModule, "remove_class_variable", rb_mod_remove_cvar, 1);
rb_define_method(rb_cClass, "new", rb_class_new_instance, -1);
rb_define_method(rb_cClass, "superclass", rb_class_superclass, 0);