From: Rafael Garcia-Suarez Date: Fri, 20 Apr 2007 14:22:26 +0000 (+0000) Subject: Nit to S_isa_lookup by Brandon Black X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e62fbf8b1596dc7b3680681000f8ab69e9dc6223;p=p5sagit%2Fp5-mst-13.2.git Nit to S_isa_lookup by Brandon Black p4raw-id: //depot/perl@30996 --- diff --git a/universal.c b/universal.c index 172b3d0..6999adc 100644 --- a/universal.c +++ b/universal.c @@ -62,7 +62,7 @@ S_isa_lookup(pTHX_ HV *stash, const char *name, const HV* const name_stash, while (items--) { SV* const basename_sv = *svp++; HV* basestash = gv_stashsv(basename_sv, 0); - if (!basestash) { + if (!basestash || (HvMROMETA(basestash)->fake && !HvFILL(basestash))) { if (ckWARN(WARN_SYNTAX)) Perl_warner(aTHX_ packWARN(WARN_SYNTAX), "Can't locate package %"SVf" for the parents of %s",