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
commite6c32d9fad18f5a1dcb13c13f02445061b60523b (patch)
tree21723768ff5e3e0f75e71749d943e0ea88f30987 /src/common/unicode
parent2a7b2d97171dd39dca7cefb91008a3c84ec003ba (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: