1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_call0): include funcalled methods in caller list.

fixed: [ruby-core:08290]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2006-07-21 12:22:08 +00:00
parent 53f6b89e7e
commit 252d273832
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Fri Jul 21 21:21:08 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_call0): include funcalled methods in caller list.
fixed: [ruby-core:08290]
Fri Jul 21 12:11:00 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/extmk.rb, lib/mkmf.rb (with_destdir): remove drive letter before

1
eval.c
View file

@ -5808,6 +5808,7 @@ rb_call0(VALUE klass, VALUE recv, ID id, ID oid,
PUSH_METHOD_FRAME();
PUSH_SCOPE();
ruby_frame->node = body;
if (body->nd_rval) {
saved_cref = ruby_cref;
ruby_cref = (NODE*)body->nd_rval;