From ee65d7d76f19a16f0da0ed36e45afba4939524c4 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 19 May 2008 18:47:56 +0000 Subject: * eval.c, vm_insnhelper.c: fix cref in instance_eval and cvar_base search protocol. * bootstraptest/test_knownbug.rb, test_eval.rb: move soleved test and add new tests. * test/ruby/test_eval.rb: fix tests for spec. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index a224744ac..d0e7e5d15 100644 --- a/eval.c +++ b/eval.c @@ -1933,7 +1933,7 @@ rb_obj_instance_eval(int argc, VALUE *argv, VALUE self) VALUE klass; if (SPECIAL_CONST_P(self)) { - klass = CLASS_OF(self); /* klass = Qnil; */ + klass = Qnil; } else { klass = rb_singleton_class(self); -- cgit