* eval.c (proc_invoke): fix class name in warning message for
define_method. [ruby-dev:22235] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4ce5922b5c
commit
aef04b63e6
@ -1,3 +1,8 @@
|
|||||||
|
Fri Dec 12 06:06:09 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* eval.c (proc_invoke): fix class name in warning message for
|
||||||
|
define_method. [ruby-dev:22235]
|
||||||
|
|
||||||
Thu Dec 11 21:24:43 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Thu Dec 11 21:24:43 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* ext/openssl/ossl_pkcs12.[ch]: new files. add OpenSSL::PKCS12.
|
* ext/openssl/ossl_pkcs12.[ch]: new files. add OpenSSL::PKCS12.
|
||||||
|
4
eval.c
4
eval.c
@ -7124,8 +7124,10 @@ proc_invoke(proc, args, self, klass)
|
|||||||
volatile int pcall, avalue = Qtrue;
|
volatile int pcall, avalue = Qtrue;
|
||||||
|
|
||||||
if (rb_block_given_p() && ruby_frame->last_func) {
|
if (rb_block_given_p() && ruby_frame->last_func) {
|
||||||
|
if (klass != ruby_frame->last_class)
|
||||||
|
klass = rb_obj_class(proc);
|
||||||
rb_warning("block for %s#%s is useless",
|
rb_warning("block for %s#%s is useless",
|
||||||
rb_obj_classname(proc),
|
rb_class2name(klass),
|
||||||
rb_id2name(ruby_frame->last_func));
|
rb_id2name(ruby_frame->last_func));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user