diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-04-06 21:53:57 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-04-06 21:53:57 +0000 |
commit | b1cf8b36002caf0ed4905946652ecfd99208858c (patch) | |
tree | 2612e216c88b11d64a84821597a18cc8602ebae5 /cop.h | |
parent | 06f53df5b0108ea5ee08faa93bb51ff77c7be7e6 (diff) | |
download | perl-b1cf8b36002caf0ed4905946652ecfd99208858c.tar.gz |
Change 33653 (inevitably) missed one cop_label, because I mistook it
for part of some other context-stack related struct.
p4raw-id: //depot/perl@33655
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -476,7 +476,7 @@ struct block_loop { # define CX_ITERDATA_SET(cx,ivar,o) \ cx->blk_loop.itervar = (SV**)(ivar); #endif -#define CxLABEL(c) (0 + (c)->blk_oldcop->cop_label) +#define CxLABEL(c) (0 + CopLABEL((c)->blk_oldcop)) #define CxHASARGS(c) (((c)->cx_type & CXp_HASARGS) == CXp_HASARGS) #define CxLVAL(c) (0 + (c)->blk_u16) |