Skip to content

Commit 7d25166

Browse files
committed
utf8.h: White-space only
Make lines fit in 80 columns
1 parent e415a32 commit 7d25166

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

utf8.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -1230,12 +1230,12 @@ point's representation.
12301230
#define UTF8_ALLOW_SURROGATE 0
12311231

12321232
/* C9 refers to Unicode Corrigendum #9: allows but discourages non-chars */
1233-
#define UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE \
1233+
#define UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE \
12341234
(UTF8_DISALLOW_SUPER|UTF8_DISALLOW_PERL_EXTENDED|UTF8_DISALLOW_SURROGATE)
1235-
#define UTF8_WARN_ILLEGAL_C9_INTERCHANGE \
1235+
#define UTF8_WARN_ILLEGAL_C9_INTERCHANGE \
12361236
(UTF8_WARN_SUPER|UTF8_WARN_PERL_EXTENDED|UTF8_WARN_SURROGATE)
12371237

1238-
#define UTF8_DISALLOW_ILLEGAL_INTERCHANGE \
1238+
#define UTF8_DISALLOW_ILLEGAL_INTERCHANGE \
12391239
(UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE|UTF8_DISALLOW_NONCHAR)
12401240
#define UTF8_WARN_ILLEGAL_INTERCHANGE \
12411241
(UTF8_WARN_ILLEGAL_C9_INTERCHANGE|UTF8_WARN_NONCHAR)
@@ -1244,10 +1244,10 @@ point's representation.
12441244
* to have to deal with any malformations that might be present. All such will
12451245
* be safely replaced by the REPLACEMENT CHARACTER, unless other flags
12461246
* overriding this are also present. */
1247-
#define UTF8_ALLOW_ANY ( UTF8_ALLOW_CONTINUATION \
1248-
|UTF8_ALLOW_NON_CONTINUATION \
1249-
|UTF8_ALLOW_SHORT \
1250-
|UTF8_ALLOW_LONG \
1247+
#define UTF8_ALLOW_ANY ( UTF8_ALLOW_CONTINUATION \
1248+
|UTF8_ALLOW_NON_CONTINUATION \
1249+
|UTF8_ALLOW_SHORT \
1250+
|UTF8_ALLOW_LONG \
12511251
|UTF8_ALLOW_OVERFLOW)
12521252

12531253
/* Accept any Perl-extended UTF-8 that evaluates to any UV on the platform, but

0 commit comments

Comments
 (0)