summaryrefslogtreecommitdiff
path: root/mg.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2010-06-04 21:25:07 +0100
committerDavid Mitchell <davem@iabyn.com>2010-06-04 21:25:07 +0100
commit354b0578ec63c058cd73f018f484808b22cc8631 (patch)
tree730a71d90c8278ba5eba0256b6c06d690b4956c9 /mg.c
parent3a19377ba2315fce9354aa3f06bafbbbab740f1b (diff)
downloadperl-354b0578ec63c058cd73f018f484808b22cc8631.tar.gz
rename DM_ARRAY flag to DM_ARRAY_ISA
This better represents its current role as specifically delaying magic on @ISA as opposed to a general array magic delay mechanism.
Diffstat (limited to 'mg.c')
-rw-r--r--mg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg.c b/mg.c
index 7c7c03ea30..24561a2a49 100644
--- a/mg.c
+++ b/mg.c
@@ -1557,7 +1557,7 @@ Perl_magic_setisa(pTHX_ SV *sv, MAGIC *mg)
PERL_UNUSED_ARG(sv);
/* Skip _isaelem because _isa will handle it shortly */
- if (PL_delaymagic & DM_ARRAY && mg->mg_type == PERL_MAGIC_isaelem)
+ if (PL_delaymagic & DM_ARRAY_ISA && mg->mg_type == PERL_MAGIC_isaelem)
return 0;
return magic_clearisa(NULL, mg);