@@ -1230,12 +1230,12 @@ point's representation.
1230
1230
#define UTF8_ALLOW_SURROGATE 0
1231
1231
1232
1232
/* 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 \
1234
1234
(UTF8_DISALLOW_SUPER|UTF8_DISALLOW_PERL_EXTENDED|UTF8_DISALLOW_SURROGATE)
1235
- #define UTF8_WARN_ILLEGAL_C9_INTERCHANGE \
1235
+ #define UTF8_WARN_ILLEGAL_C9_INTERCHANGE \
1236
1236
(UTF8_WARN_SUPER|UTF8_WARN_PERL_EXTENDED|UTF8_WARN_SURROGATE)
1237
1237
1238
- #define UTF8_DISALLOW_ILLEGAL_INTERCHANGE \
1238
+ #define UTF8_DISALLOW_ILLEGAL_INTERCHANGE \
1239
1239
(UTF8_DISALLOW_ILLEGAL_C9_INTERCHANGE|UTF8_DISALLOW_NONCHAR)
1240
1240
#define UTF8_WARN_ILLEGAL_INTERCHANGE \
1241
1241
(UTF8_WARN_ILLEGAL_C9_INTERCHANGE|UTF8_WARN_NONCHAR)
@@ -1244,10 +1244,10 @@ point's representation.
1244
1244
* to have to deal with any malformations that might be present. All such will
1245
1245
* be safely replaced by the REPLACEMENT CHARACTER, unless other flags
1246
1246
* 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 \
1251
1251
|UTF8_ALLOW_OVERFLOW)
1252
1252
1253
1253
/* Accept any Perl-extended UTF-8 that evaluates to any UV on the platform, but
0 commit comments