summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-13 04:30:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-13 04:30:08 +0000
commitfdbf3a76a18d6282953a2a7d3a6af222f6fa1be2 (patch)
tree2ad1b9d864f89d25e8ed00d8a2fd54c17ac7afc6 /eval.c
parent6522a4681f7c8916777edb5c045b3cd3c83f5260 (diff)
* eval.c (eval): should push class from binding if supplied.
[ruby-core:07347] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 87cf6127b1..85052c16f6 100644
--- a/eval.c
+++ b/eval.c
@@ -6341,6 +6341,7 @@ eval(self, src, scope, file, line)
file = ruby_sourcefile;
line = ruby_sourceline;
}
+ PUSH_CLASS(data ? data->klass : ruby_class);
ruby_in_eval++;
if (TYPE(ruby_class) == T_ICLASS) {
ruby_class = RBASIC(ruby_class)->klass;
@@ -6361,6 +6362,7 @@ eval(self, src, scope, file, line)
result = eval_node(self, node);
}
POP_TAG();
+ POP_CLASS();
ruby_in_eval--;
if (!NIL_P(scope)) {
int dont_recycle = ruby_scope->flags & SCOPE_DONT_RECYCLE;