summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-10-16 11:09:52 -0600
committerKarl Williamson <public@khwilliamson.com>2012-10-16 21:48:37 -0600
commit49b95fadfe8c5c974cc7538ea3f53702cdf705ff (patch)
tree0ce38985491019a2a3346b8e7231ac3e2be52b8e
parent613a425dda0dc9e3f838151a5d796c902cfd922e (diff)
downloadperl-49b95fadfe8c5c974cc7538ea3f53702cdf705ff.tar.gz
regexec.c: White-space only; no code changes
This indents a newly-formed block correctly
-rw-r--r--regexec.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/regexec.c b/regexec.c
index e631f834da..3ed24ddacf 100644
--- a/regexec.c
+++ b/regexec.c
@@ -6666,17 +6666,18 @@ S_regrepeat(pTHX_ const regexp *prog, char **startposp, const regnode *p, I32 ma
if (S_setup_EXACTISH_ST_c1_c2(aTHX_ p, &c1, c1_utf8, &c2, c2_utf8)) {
if (c1 == CHRTEST_VOID) {
- /* Use full Unicode fold matching */
- char *tmpeol = loceol;
- STRLEN pat_len = (UTF_PATTERN) ? UTF8SKIP(STRING(p)) : 1;
- while (hardcount < max
- && foldEQ_utf8_flags(scan, &tmpeol, 0, utf8_target,
- STRING(p), NULL, pat_len, cBOOL(UTF_PATTERN), utf8_flags))
- {
- scan = tmpeol;
- tmpeol = loceol;
- hardcount++;
- }
+ /* Use full Unicode fold matching */
+ char *tmpeol = loceol;
+ STRLEN pat_len = (UTF_PATTERN) ? UTF8SKIP(STRING(p)) : 1;
+ while (hardcount < max
+ && foldEQ_utf8_flags(scan, &tmpeol, 0, utf8_target,
+ STRING(p), NULL, pat_len,
+ cBOOL(UTF_PATTERN), utf8_flags))
+ {
+ scan = tmpeol;
+ tmpeol = loceol;
+ hardcount++;
+ }
}
else if (utf8_target) {
if (c1 == c2) {