diff options
author | Zefram <zefram@fysh.org> | 2017-11-29 15:22:49 +0000 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2017-11-29 15:22:49 +0000 |
commit | df16d5564aa82a94953a0bccfc9917bc140ead02 (patch) | |
tree | c28018531c7c7a92d2e134ee4b659c299404f63f /pp_ctl.c | |
parent | df9e1bc13efe0941735d662db5683d62b3851535 (diff) | |
download | perl-df16d5564aa82a94953a0bccfc9917bc140ead02.tar.gz |
revise block_givwhen for sole use by "when"
This context frame type doesn't need to cater for "given" any more.
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4733,7 +4733,7 @@ PP(pp_continue) CX_LEAVE_SCOPE(cx); cx_popwhen(cx); cx_popblock(cx); - nextop = cx->blk_givwhen.leave_op->op_next; + nextop = cx->blk_when.leave_op->op_next; CX_POP(cx); return nextop; |