summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-08-21 08:17:51 -0600
committerKarl Williamson <public@khwilliamson.com>2012-08-25 23:21:30 -0600
commit721670045d5263bd28b147533785fbbf36671316 (patch)
treec0afbfbba10ae3b72e557596177952947ab5c3fb /regexec.c
parenta1853d78a51dcd1a14b408d87ce27e98b6fc8a23 (diff)
downloadperl-721670045d5263bd28b147533785fbbf36671316.tar.gz
regexec.c: White-space only
Indent inside newly formed block
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/regexec.c b/regexec.c
index 27ad2d89ec..39bc226fc2 100644
--- a/regexec.c
+++ b/regexec.c
@@ -3999,13 +3999,13 @@ S_regmatch(pTHX_ regmatch_info *reginfo, regnode *prog)
/* Match (prepend)*, but don't bother trying if empty (as
* being set to _undef indicates) */
if (PL_utf8_X_prepend != &PL_sv_undef) {
- while (locinput < PL_regeol
- && swash_fetch(PL_utf8_X_prepend,
- (U8*)locinput, utf8_target))
- {
- previous_prepend = locinput;
- locinput += UTF8SKIP(locinput);
- }
+ while (locinput < PL_regeol
+ && swash_fetch(PL_utf8_X_prepend,
+ (U8*)locinput, utf8_target))
+ {
+ previous_prepend = locinput;
+ locinput += UTF8SKIP(locinput);
+ }
}
/* As noted above, if we matched a prepend character, but