diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-12-23 22:11:16 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-12-23 22:42:24 -0800 |
commit | c96f4d3199da99e66c9172234f7dd6ff18ea8456 (patch) | |
tree | 3dcf64108d68cd5c671d7784beff6a7fc23e6757 /op.c | |
parent | 8a6c0fcb27512d17f0e5121f3c83d1a1a72c6f6b (diff) | |
download | perl-c96f4d3199da99e66c9172234f7dd6ff18ea8456.tar.gz |
op.c: newLOOPOP: Remove code supporting do-sub
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6458,7 +6458,7 @@ Perl_newLOOPOP(pTHX_ I32 flags, I32 debuggable, OP *expr, OP *block) OP* listop; OP* o; const bool once = block && block->op_flags & OPf_SPECIAL && - (block->op_type == OP_ENTERSUB || block->op_type == OP_NULL); + block->op_type == OP_NULL; PERL_UNUSED_ARG(debuggable); |