summaryrefslogtreecommitdiff
path: root/src/common/unicode
diff options
context:
space:
mode:
authorÁlvaro Herrera2024-11-26 16:10:07 +0000
committerÁlvaro Herrera2024-11-26 16:10:07 +0000
commitb0e572819d51bfd87d161e5e1d11178610f6fb3a (patch)
tree48c84a0698ba6dc497e006165b62d8558bf0139d /src/common/unicode
parentf3834c12afd8125c4e5e8774a4b941a58dab8f5b (diff)
Clean up newlines following left parentheses
Most came in during the 17 cycle, so backpatch there. Some (particularly reorderbuffer.h) are very old, but backpatching doesn't seem useful. Like commits c9d297751959, c4f113e8fef9.
Diffstat (limited to 'src/common/unicode')
-rw-r--r--src/common/unicode/category_test.c24
1 files changed, 8 insertions, 16 deletions
diff --git a/src/common/unicode/category_test.c b/src/common/unicode/category_test.c
index e823044d63a..ba6aa7be574 100644
--- a/src/common/unicode/category_test.c
+++ b/src/common/unicode/category_test.c
@@ -74,22 +74,14 @@ icu_test()
bool prop_hex_digit = pg_u_prop_hex_digit(code);
bool prop_join_control = pg_u_prop_join_control(code);
- bool icu_prop_alphabetic = u_hasBinaryProperty(
- code, UCHAR_ALPHABETIC);
- bool icu_prop_lowercase = u_hasBinaryProperty(
- code, UCHAR_LOWERCASE);
- bool icu_prop_uppercase = u_hasBinaryProperty(
- code, UCHAR_UPPERCASE);
- bool icu_prop_cased = u_hasBinaryProperty(
- code, UCHAR_CASED);
- bool icu_prop_case_ignorable = u_hasBinaryProperty(
- code, UCHAR_CASE_IGNORABLE);
- bool icu_prop_white_space = u_hasBinaryProperty(
- code, UCHAR_WHITE_SPACE);
- bool icu_prop_hex_digit = u_hasBinaryProperty(
- code, UCHAR_HEX_DIGIT);
- bool icu_prop_join_control = u_hasBinaryProperty(
- code, UCHAR_JOIN_CONTROL);
+ bool icu_prop_alphabetic = u_hasBinaryProperty(code, UCHAR_ALPHABETIC);
+ bool icu_prop_lowercase = u_hasBinaryProperty(code, UCHAR_LOWERCASE);
+ bool icu_prop_uppercase = u_hasBinaryProperty(code, UCHAR_UPPERCASE);
+ bool icu_prop_cased = u_hasBinaryProperty(code, UCHAR_CASED);
+ bool icu_prop_case_ignorable = u_hasBinaryProperty(code, UCHAR_CASE_IGNORABLE);
+ bool icu_prop_white_space = u_hasBinaryProperty(code, UCHAR_WHITE_SPACE);
+ bool icu_prop_hex_digit = u_hasBinaryProperty(code, UCHAR_HEX_DIGIT);
+ bool icu_prop_join_control = u_hasBinaryProperty(code, UCHAR_JOIN_CONTROL);
/*
* Compare with ICU for character classes using: