diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-02-18 10:47:15 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2014-02-19 08:32:59 -0700 |
commit | b574cd746488e06e3f649d9c08e0528fedfac5ca (patch) | |
tree | cfdabae7ce2f9c1a75be7e4d2481ec1aa48654b9 /regcomp.c | |
parent | 1ee208c4824a2a3a18e979873141161c149a57a3 (diff) | |
download | perl-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.c | 36 |
1 files changed, 18 insertions, 18 deletions
@@ -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); - } } } |