summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-02-18 10:47:15 -0700
committerKarl Williamson <public@khwilliamson.com>2014-02-19 08:32:59 -0700
commitb574cd746488e06e3f649d9c08e0528fedfac5ca (patch)
treecfdabae7ce2f9c1a75be7e4d2481ec1aa48654b9 /regcomp.c
parent1ee208c4824a2a3a18e979873141161c149a57a3 (diff)
downloadperl-b574cd746488e06e3f649d9c08e0528fedfac5ca.tar.gz
regcomp.c,regexec.c: White-space only
Properly indent two sections of code newly enclosed in braces by the previous commit
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/regcomp.c b/regcomp.c
index 3371d5d49f..b866f0df92 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -15763,26 +15763,26 @@ Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o)
SvREFCNT_dec_NN(lv);
}
- if ((flags & ANYOF_LOC_FOLD)
- && only_utf8_locale
- && only_utf8_locale != &PL_sv_undef)
- {
- UV start, end;
- int max_entries = 256;
-
- sv_catpvs(sv, "{utf8 locale}");
- invlist_iterinit(only_utf8_locale);
- while (invlist_iternext(only_utf8_locale,
- &start, &end)) {
- put_range(sv, start, end);
- max_entries --;
- if (max_entries < 0) {
- sv_catpvs(sv, "...");
- break;
+ if ((flags & ANYOF_LOC_FOLD)
+ && only_utf8_locale
+ && only_utf8_locale != &PL_sv_undef)
+ {
+ UV start, end;
+ int max_entries = 256;
+
+ sv_catpvs(sv, "{utf8 locale}");
+ invlist_iterinit(only_utf8_locale);
+ while (invlist_iternext(only_utf8_locale,
+ &start, &end)) {
+ put_range(sv, start, end);
+ max_entries --;
+ if (max_entries < 0) {
+ sv_catpvs(sv, "...");
+ break;
+ }
}
+ invlist_iterfinish(only_utf8_locale);
}
- invlist_iterfinish(only_utf8_locale);
- }
}
}