diff options
author | Robin Houston <robin@cpan.org> | 2001-04-06 19:10:14 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-07 17:29:47 +0000 |
commit | b0840a2a4e2429536ffb069928546c0cd4916ac8 (patch) | |
tree | 067a493616b7c4f305697652a77c35578aa784b6 /op.c | |
parent | 59bb58455c306b86a68fba97f3fcce0a1f372a01 (diff) | |
download | perl-b0840a2a4e2429536ffb069928546c0cd4916ac8.tar.gz |
PATCH: $[
Message-ID: <20010406181014.A18803@puffinry.freeserve.co.uk>
p4raw-id: //depot/perl@9614
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6818,7 +6818,7 @@ Perl_peep(pTHX_ register OP *o) pop->op_next->op_type == OP_AELEM && !(pop->op_next->op_private & (OPpLVAL_INTRO|OPpLVAL_DEFER|OPpDEREF|OPpMAYBE_LVSUB)) && - (i = SvIV(((SVOP*)pop)->op_sv) - PL_compiling.cop_arybase) + (i = SvIV(((SVOP*)pop)->op_sv) - PL_curcop->cop_arybase) <= 255 && i >= 0) { |