From 2ee1faad3521a3f4af605ff9c9242b912259f946 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Wed, 4 Jan 2017 21:22:21 +0000 Subject: [PATCH] reindent block in rpeep() (whitespace-only change) The code for the case OP_PADAV/OP_PADSV was too far left. --- op.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/op.c b/op.c index 7aa56f7..5966d53 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) ? -- 1.8.3.1