summaryrefslogtreecommitdiff
path: root/pp.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 /pp.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 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 2649c7ef3b..4c985813de 100644
--- a/pp.c
+++ b/pp.c
@@ -5349,7 +5349,7 @@ PP(pp_push)
sv_setsv(sv, *MARK);
av_store(ary, AvFILLp(ary)+1, sv);
}
- if (PL_delaymagic & DM_ARRAY)
+ if (PL_delaymagic & DM_ARRAY_ISA)
mg_set(MUTABLE_SV(ary));
PL_delaymagic = 0;