diff options
author | David Mitchell <davem@iabyn.com> | 2010-06-04 21:25:07 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2010-06-04 21:25:07 +0100 |
commit | 354b0578ec63c058cd73f018f484808b22cc8631 (patch) | |
tree | 730a71d90c8278ba5eba0256b6c06d690b4956c9 /pp.c | |
parent | 3a19377ba2315fce9354aa3f06bafbbbab740f1b (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |