diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-08-21 08:17:51 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-08-25 23:21:30 -0600 |
commit | 721670045d5263bd28b147533785fbbf36671316 (patch) | |
tree | c0afbfbba10ae3b72e557596177952947ab5c3fb /regexec.c | |
parent | a1853d78a51dcd1a14b408d87ce27e98b6fc8a23 (diff) | |
download | perl-721670045d5263bd28b147533785fbbf36671316.tar.gz |
regexec.c: White-space only
Indent inside newly formed block
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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 |