summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-17 16:08:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-17 16:08:08 +0000
commitd16c035975f45d67a09a84d3d7e574fb80aa0a55 (patch)
treec2a330f2738ea2ce499b13bb1fd7028e65b86e59 /eval.c
parent110a9f783d1ae87a059fdb20f711ef5b9b8e49cc (diff)
* variable.c (rb_const_get_0): skip ruby_wrapper in const search
to give it lower priority (just above Object). need not to change rb_const_defined_0() since it's only a precedence matter; they are defined anyway. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 1b411fa161..3f00a86024 100644
--- a/eval.c
+++ b/eval.c
@@ -951,7 +951,7 @@ static struct tag *prot_tag;
#define TAG_THREAD 0xa
#define TAG_MASK 0xf
-static VALUE ruby_wrapper; /* security wrapper */
+VALUE ruby_wrapper; /* security wrapper */
static NODE *ruby_cref = 0;
static NODE *top_cref;