diff options
author | Tim Bunce <Tim.Bunce@pobox.com> | 2008-11-20 13:17:19 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-20 15:04:08 +0000 |
commit | 139d0ce69f7cc12a8ffc1a75bbb5c65306d08d35 (patch) | |
tree | ccc03140d436018be75ca571e55ced7611e5a88e /gv.c | |
parent | 49947b44604f4ad78042983f22bb71affe999fb9 (diff) | |
download | perl-139d0ce69f7cc12a8ffc1a75bbb5c65306d08d35.tar.gz |
Hard-coded Perl_pp_entersub and Perl_pp_entereval should use PL_ppaddr
Message-ID: <20081120131719.GA32120@timac.local>
[tweaked for blead because of change 27941]
p4raw-id: //depot/perl@34896
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2156,7 +2156,7 @@ Perl_amagic_call(pTHX_ SV *left, SV *right, int method, int flags) PUSHs(MUTABLE_SV(cv)); PUTBACK; - if ((PL_op = Perl_pp_entersub(aTHX))) + if ((PL_op = PL_ppaddr[OP_ENTERSUB](aTHX))) CALLRUNOPS(aTHX); LEAVE; SPAGAIN; |