aboutsummaryrefslogtreecommitdiffstats
path: root/load.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-03 14:07:24 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-03 14:07:24 +0000
commit4ab762de21ecf321cf88b8f17750f6f4ea9ebf3f (patch)
treecca1e4aa6a2561e16ca33fd645f81457a98bc303 /load.c
parent899d49bd2980c1fae55818cf983449c71a800949 (diff)
downloadruby-4ab762de21ecf321cf88b8f17750f6f4ea9ebf3f.tar.gz
* vm_method.c: rename `rb_frame_...' to `rb_scope_...'.
* eval_intern.h: move decl. of rb_scope_visibility_set() to method.h. * load.c: catch up this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'load.c')
-rw-r--r--load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/load.c b/load.c
index bf1d4ee982..02b4a68a89 100644
--- a/load.c
+++ b/load.c
@@ -929,7 +929,7 @@ load_failed(VALUE fname)
static VALUE
load_ext(VALUE path)
{
- rb_frame_visibility_set(METHOD_VISI_PUBLIC);
+ rb_scope_visibility_set(METHOD_VISI_PUBLIC);
return (VALUE)dln_load(RSTRING_PTR(path));
}