diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-20 21:11:52 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-20 21:11:52 +0000 |
commit | 11ca45c0440b891278a1e7129025dd5644026556 (patch) | |
tree | 9091ca5bf20af6659e0e73384a258d5ac3ddbb3d /pp_ctl.c | |
parent | 7596a890808c68b396a85f42b3695b1e97cbe208 (diff) | |
download | perl-11ca45c0440b891278a1e7129025dd5644026556.tar.gz |
Goodbye AvFLAGS
p4raw-id: //depot/perl@24518
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2315,7 +2315,7 @@ PP(pp_goto) SvREFCNT_dec(av); av = newAV(); av_extend(av, items-1); - AvFLAGS(av) = AVf_REIFY; + AvREIFY_only(av); PAD_SVl(0) = (SV*)(cx->blk_sub.argarray = av); } } |