From 25e3aa3332bf90bf0b2b8dd3e9a7762d9da4fe8f Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Tue, 13 Nov 2012 11:02:36 +0000 Subject: [PATCH] pp_iter: reindent after removing if block only whitespace changes --- pp_hot.c | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pp_hot.c b/pp_hot.c index 0645524..719fef2 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -1919,23 +1919,23 @@ PP(pp_iter) if (SvNIOK(cur) || SvCUR(cur) > maxlen) RETPUSHNO; - if (SvREFCNT(*itersvp) == 1 && !SvMAGICAL(*itersvp)) { - /* safe to reuse old SV */ - sv_setsv(*itersvp, cur); - } - else - { - /* we need a fresh SV every time so that loop body sees a - * completely new SV for closures/references to work as - * they used to */ - oldsv = *itersvp; - *itersvp = newSVsv(cur); - SvREFCNT_dec(oldsv); - } - if (strEQ(SvPVX_const(cur), max)) - sv_setiv(cur, 0); /* terminate next time */ - else - sv_inc(cur); + if (SvREFCNT(*itersvp) == 1 && !SvMAGICAL(*itersvp)) { + /* safe to reuse old SV */ + sv_setsv(*itersvp, cur); + } + else + { + /* we need a fresh SV every time so that loop body sees a + * completely new SV for closures/references to work as + * they used to */ + oldsv = *itersvp; + *itersvp = newSVsv(cur); + SvREFCNT_dec(oldsv); + } + if (strEQ(SvPVX_const(cur), max)) + sv_setiv(cur, 0); /* terminate next time */ + else + sv_inc(cur); break; } -- 2.7.4