summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-01-04 21:22:21 +0000
committerDavid Mitchell <davem@iabyn.com>2017-01-06 16:28:27 +0000
commit2ee1faad3521a3f4af605ff9c9242b912259f946 (patch)
tree62df0f21aaad4a8670a501c5ca09ebf5a2b137cd /op.c
parentb0e8c18f9f49fea18c28b17e25b09dc7e7244da8 (diff)
downloadperl-2ee1faad3521a3f4af605ff9c9242b912259f946.tar.gz
reindent block in rpeep()
(whitespace-only change) The code for the case OP_PADAV/OP_PADSV was too far left.
Diffstat (limited to 'op.c')
-rw-r--r--op.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/op.c b/op.c
index 7aa56f74d2..5966d538d5 100644
--- a/op.c
+++ b/op.c
@@ -14184,16 +14184,16 @@ Perl_rpeep(pTHX_ OP *o)
/* FALLTHROUGH */
case OP_PADAV:
case OP_PADSV:
- /* Skip over state($x) in void context. */
- if (oldop && o->op_private == (OPpPAD_STATE|OPpLVAL_INTRO)
- && (o->op_flags & OPf_WANT) == OPf_WANT_VOID)
- {
- oldop->op_next = o->op_next;
- goto redo_nextstate;
- }
- if (o->op_type != OP_PADAV)
- break;
- /* FALLTHROUGH */
+ /* Skip over state($x) in void context. */
+ if (oldop && o->op_private == (OPpPAD_STATE|OPpLVAL_INTRO)
+ && (o->op_flags & OPf_WANT) == OPf_WANT_VOID)
+ {
+ oldop->op_next = o->op_next;
+ goto redo_nextstate;
+ }
+ if (o->op_type != OP_PADAV)
+ break;
+ /* FALLTHROUGH */
case OP_GV:
if (o->op_type == OP_PADAV || o->op_next->op_type == OP_RV2AV) {
OP* const pop = (o->op_type == OP_PADAV) ?