diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-09-11 21:12:51 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-09-11 21:12:51 +0000 |
commit | 515a4f721c0a11d47b9b2ea994989f977659c68b (patch) | |
tree | bfe2cd821573ed62407b94615617c7e3a61fa312 /embed.h | |
parent | 477acd91b77777975279707e892853aef237706b (diff) | |
download | perl-515a4f721c0a11d47b9b2ea994989f977659c68b.tar.gz |
S_isa_lookup() no longer recurses (as of Brandon's MRO changes), so we
don't need to pass in name_stash as a parameter.
p4raw-id: //depot/perl@34349
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3897,7 +3897,7 @@ #endif #if defined(PERL_IN_UNIVERSAL_C) || defined(PERL_DECL_PROT) #ifdef PERL_CORE -#define isa_lookup(a,b,c) S_isa_lookup(aTHX_ a,b,c) +#define isa_lookup(a,b) S_isa_lookup(aTHX_ a,b) #endif #endif #if defined(PERL_IN_LOCALE_C) || defined(PERL_DECL_PROT) |