1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +03:00

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 c9d2977519, c4f113e8fe.
This commit is contained in:
Álvaro Herrera
2024-11-26 17:10:07 +01:00
parent 2a7b2d9717
commit e6c32d9fad
9 changed files with 32 additions and 55 deletions

View File

@@ -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: