From b5e7acf641d4ef3538803b746723b90a822ea1ad Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 24 Apr 2024 00:28:01 +0200 Subject: Support titlecasing Dutch ‘IJ’ properly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/unicode/string.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/unicode') diff --git a/include/unicode/string.h b/include/unicode/string.h index cb19821..4b75864 100644 --- a/include/unicode/string.h +++ b/include/unicode/string.h @@ -14,7 +14,8 @@ enum [[clang::flag_enum]] caseflags { CF_LANG_AZ = 1 << 0, /* Azeri; alias for CF_LANG_TR */ CF_LANG_TR = 1 << 0, /* Turkish; alias for CF_LANG_AZ */ CF_LANG_LT = 1 << 1, /* Lithuanian */ - CF_ẞ = 1 << 2, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ + CF_LANG_NL = 1 << 2, /* Dutch */ + CF_ẞ = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ }; /* clang-format on */ -- cgit v1.2.3