diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-25 19:23:58 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-25 19:23:58 +0000 |
commit | 1ba6ee2b6ffb90b7d229bcee46bded6dda6b3bcc (patch) | |
tree | a13a13beae8049211a412cce5206dccd24673251 /op.h | |
parent | faee740f668b7b35a18577bc0b2150b66dd521ec (diff) | |
download | perl-1ba6ee2b6ffb90b7d229bcee46bded6dda6b3bcc.tar.gz |
change#4849 wasn't restoring savestack correctly; make loops that have
continue blocks recognizable at run time
p4raw-link: @4849 on //depot/perl: 872465582bf743a066e1240f2c3e941735674827
p4raw-id: //depot/perl@5255
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -139,6 +139,9 @@ Deprecated. Use C<GIMME_V> instead. /* Private for OP_REPEAT */ #define OPpREPEAT_DOLIST 64 /* List replication. */ +/* Private for OP_LEAVELOOP */ +#define OPpLOOP_CONTINUE 64 /* a continue block is present */ + /* Private for OP_RV2?V, OP_?ELEM */ #define OPpDEREF (32|64) /* Want ref to something: */ #define OPpDEREF_AV 32 /* Want ref to AV. */ |