diff options
author | Karl Williamson <khw@cpan.org> | 2018-03-05 11:12:14 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2018-03-05 11:22:14 -0700 |
commit | 290746ac426c1396497786818282dc2d1330cf79 (patch) | |
tree | ae5dfd9a2d8a23b59f7a9214ee6d2ec35566d176 /regexec.c | |
parent | 2c5c8af5a935f2bbfcaa421d2ed8964aaa3edd7a (diff) | |
download | perl-290746ac426c1396497786818282dc2d1330cf79.tar.gz |
regexec.c: White-space only
Properly indent preprocessor directives
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |