diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-09-28 12:06:07 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-09-30 10:07:37 -0600 |
commit | 104c15725ed6beabffaa103aeb2ebc4ba6139947 (patch) | |
tree | a0da85cfa6b2af3512b7013113cda51d9a4463d6 /utf8.h | |
parent | 7cf040c1f649790a4040aec47e47b4ce8b378728 (diff) | |
download | perl-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |