aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-11 15:50:42 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-11 15:50:42 +0000
commit22ea03bb7e213d60e49a9cdd1ec1b221ef802e2a (patch)
tree5dece12b9c366a68a6c72cef7fbade19b87553de /iseq.c
parent782e2148aff47d871e6079867fede4ea3f2526a1 (diff)
downloadruby-22ea03bb7e213d60e49a9cdd1ec1b221ef802e2a.tar.gz
* iseq.c: disable ISeq.load. It enabled accidentally at r51794.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51825 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 283cd28be9..de09949e5e 100644
--- a/iseq.c
+++ b/iseq.c
@@ -2320,9 +2320,9 @@ Init_ISeq(void)
#if 0 /* TBD */
rb_define_private_method(rb_cISeq, "marshal_dump", iseqw_marshal_dump, 0);
rb_define_private_method(rb_cISeq, "marshal_load", iseqw_marshal_load, 1);
-#endif
/* disable this feature because there is no verifier. */
rb_define_singleton_method(rb_cISeq, "load", iseq_s_load, -1);
+#endif
(void)iseq_s_load;
rb_define_singleton_method(rb_cISeq, "compile", iseqw_s_compile, -1);