diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-02-17 23:30:50 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-02-17 23:30:50 +0000 |
commit | 1264b80798c0a11f05ba53e46670736518e045be (patch) | |
tree | 89e779252a08db19466b5562dc06e0b9e321738d /opcode.h | |
parent | f7d6457c68dfff7b85feadc14647dd8f02576a2b (diff) | |
download | perl-1264b80798c0a11f05ba53e46670736518e045be.tar.gz |
add deprecation warning for C<my $x if foo> and C<foo && (my $x)>
p4raw-id: //depot/perl@22328
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1291,8 +1291,8 @@ EXT OP * (CPERLscope(*PL_check)[]) (pTHX_ OP *op) = { MEMBER_TO_FPTR(Perl_ck_die), /* die */ MEMBER_TO_FPTR(Perl_ck_fun), /* reset */ MEMBER_TO_FPTR(Perl_ck_null), /* lineseq */ - MEMBER_TO_FPTR(Perl_ck_null), /* nextstate */ - MEMBER_TO_FPTR(Perl_ck_null), /* dbstate */ + MEMBER_TO_FPTR(Perl_ck_state), /* nextstate */ + MEMBER_TO_FPTR(Perl_ck_state), /* dbstate */ MEMBER_TO_FPTR(Perl_ck_null), /* unstack */ MEMBER_TO_FPTR(Perl_ck_null), /* enter */ MEMBER_TO_FPTR(Perl_ck_null), /* leave */ |