summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-03-05 11:12:14 -0700
committerKarl Williamson <khw@cpan.org>2018-03-05 11:22:14 -0700
commit290746ac426c1396497786818282dc2d1330cf79 (patch)
treeae5dfd9a2d8a23b59f7a9214ee6d2ec35566d176 /regexec.c
parent2c5c8af5a935f2bbfcaa421d2ed8964aaa3edd7a (diff)
downloadperl-290746ac426c1396497786818282dc2d1330cf79.tar.gz
regexec.c: White-space only
Properly indent preprocessor directives
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/regexec.c b/regexec.c
index 488bbd8386..8b6642c22b 100644
--- a/regexec.c
+++ b/regexec.c
@@ -587,17 +587,17 @@ S_find_next_ascii(char * s, const char * send, const bool utf8_target)
PERL_UINTMAX_T complemented = ~ * (PERL_UINTMAX_T *) s;
if (complemented & PERL_VARIANTS_WORD_MASK) {
-#if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678 \
- || BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
+# if BYTEORDER == 0x1234 || BYTEORDER == 0x12345678 \
+ || BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
s += _variant_byte_number(complemented);
return s;
-#else /* If weird byte order, drop into next loop to do byte-at-a-time
+# else /* If weird byte order, drop into next loop to do byte-at-a-time
checks. */
break;
-#endif
+# endif
}
s += PERL_WORDSIZE;