summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-04-06 21:53:57 +0000
committerNicholas Clark <nick@ccl4.org>2008-04-06 21:53:57 +0000
commitb1cf8b36002caf0ed4905946652ecfd99208858c (patch)
tree2612e216c88b11d64a84821597a18cc8602ebae5 /cop.h
parent06f53df5b0108ea5ee08faa93bb51ff77c7be7e6 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cop.h b/cop.h
index 90f96a1bd2..d1e46da452 100644
--- a/cop.h
+++ b/cop.h
@@ -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)