summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-01-28 10:23:21 +0000
committerNicholas Clark <nick@ccl4.org>2008-01-28 10:23:21 +0000
commit6b75f04219345928d4af5de9535cb69db219287f (patch)
tree019fc244d55111c4325b0af21860d5e241203187 /cop.h
parent001d637e39d61293255c8b6c91da77ebdca4e4d6 (diff)
downloadperl-6b75f04219345928d4af5de9535cb69db219287f.tar.gz
The third argument of PUSHEVAL was never used by anything. Ever.
p4raw-id: //depot/perl@33086
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 b79cc19450..8cfc88df81 100644
--- a/cop.h
+++ b/cop.h
@@ -407,7 +407,7 @@ struct block_eval {
#define CxOLD_IN_EVAL(cx) (((cx)->blk_u16) & 0x7F)
#define CxOLD_OP_TYPE(cx) (((cx)->blk_u16) >> 7)
-#define PUSHEVAL(cx,n,fgv) \
+#define PUSHEVAL(cx,n) \
STMT_START { \
assert(!(PL_in_eval & ~0x7F)); \
assert(!(PL_op->op_type & ~0x1FF)); \