summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-09-28 12:06:07 -0600
committerKarl Williamson <public@khwilliamson.com>2013-09-30 10:07:37 -0600
commit104c15725ed6beabffaa103aeb2ebc4ba6139947 (patch)
treea0da85cfa6b2af3512b7013113cda51d9a4463d6 /utf8.h
parent7cf040c1f649790a4040aec47e47b4ce8b378728 (diff)
downloadperl-104c15725ed6beabffaa103aeb2ebc4ba6139947.tar.gz
utf8.h: White-space only
I believe this makes the macro easier to read
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/utf8.h b/utf8.h
index 76b89a4246..1efa5d331e 100644
--- a/utf8.h
+++ b/utf8.h
@@ -368,7 +368,8 @@ Perl's extended UTF-8 means we can have start bytes up to FF.
* These expand identically to the TWO_BYTE versions on ASCII platforms, but
* use to/from LATIN1 instead of UNI, which on EBCDIC eliminates tests */
#define UTF8_EIGHT_BIT_HI(c) I8_TO_NATIVE_UTF8((NATIVE_TO_LATIN1(c) \
- >> UTF_ACCUMULATION_SHIFT) | UTF_START_MARK(2))
+ >> UTF_ACCUMULATION_SHIFT) \
+ | UTF_START_MARK(2))
#define UTF8_EIGHT_BIT_LO(c) I8_TO_NATIVE_UTF8((NATIVE_TO_LATIN1(c) \
& UTF_CONTINUATION_MASK) \
| UTF_CONTINUATION_MARK)