diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-03-31 06:23:12 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-03-31 06:23:12 +0000 |
commit | 59e7186f90f13f9b1945035df4ce5a5117d604dc (patch) | |
tree | 0d97cb2b5b87e023f44c46034b8bd3b6bf09fddd /pp_hot.c | |
parent | 40986f42b4dca4ed841e1a7f7d848e9b5f199680 (diff) | |
download | perl-59e7186f90f13f9b1945035df4ce5a5117d604dc.tar.gz |
Fix the error message "Can't call method "DOES" on unblessed
reference".
p4raw-id: //depot/perl@30806
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3024,6 +3024,7 @@ S_method_common(pTHX_ SV* meth, U32* hashp) && SvOBJECT(ob)))) { Perl_croak(aTHX_ "Can't call method \"%s\" on unblessed reference", + (SvSCREAM(meth) && strEQ(name,"isa")) ? "DOES" : name); } |