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 /mg.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 'mg.c')
-rw-r--r-- | mg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |