diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-26 17:20:26 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-26 17:20:26 +0200 |
commit | ef8a2910aa4bfc49973e63e1003b01f47a675249 (patch) | |
tree | e2ebe2a8c898f6570d69da89b00ee1b30161fffd /include | |
parent | b5e7acf641d4ef3538803b746723b90a822ea1ad (diff) |
Fully comply with Unicode 15.1 § 3.13 in u8lower()
Diffstat (limited to 'include')
-rw-r--r-- | include/unicode/prop.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/unicode/prop.h b/include/unicode/prop.h index 8cb50c5..062d121 100644 --- a/include/unicode/prop.h +++ b/include/unicode/prop.h @@ -36,10 +36,10 @@ struct lcctx { bool az_or_tr : 1; bool lt : 1; - bool after_I : 1; /* After ‘I’ */ - bool before_acc : 1; /* Before accent on ‘i’ or ‘j’ in Lithuanian */ - bool before_dot : 1; /* Before U+0307 */ - bool eow : 1; /* End of word */ + bool after_I : 1; + bool before_dot : 1; + bool final_sigma : 1; + bool more_above : 1; }; struct tcctx { |