diff --git a/icu4c/source/common/loclikelysubtags.cpp b/icu4c/source/common/loclikelysubtags.cpp index 7c6131197d8..7245a779816 100644 --- a/icu4c/source/common/loclikelysubtags.cpp +++ b/icu4c/source/common/loclikelysubtags.cpp @@ -527,7 +527,7 @@ LSR LikelySubtags::makeMaximizedLsrFrom(const Locale &locale, return {}; } const char *name = locale.getName(); - if (uprv_isAtSign(name[0]) && name[1] == 'x' && name[2] == '=') { // name.startsWith("@x=") + if (!returnInputIfUnmatch && uprv_isAtSign(name[0]) && name[1] == 'x' && name[2] == '=') { // name.startsWith("@x=") // Private use language tag x-subtag-subtag... which CLDR changes to // und-x-subtag-subtag... return LSR(name, "", "", LSR::EXPLICIT_LSR); diff --git a/icu4c/source/test/cintltst/cloctst.c b/icu4c/source/test/cintltst/cloctst.c index 1a6c20fdcd2..8dbf04572da 100644 --- a/icu4c/source/test/cintltst/cloctst.c +++ b/icu4c/source/test/cintltst/cloctst.c @@ -3924,6 +3924,13 @@ const char* const basic_maximize_data[][2] = { // ICU-22545 & ICU-22742 "ru_XC", "ru_Cyrl_XC" + }, { + // ICU-22765 + "und@x=private", + "en_Latn_US@x=private", + }, { + "th@x=private", + "th_Thai_TH@x=private", } }; diff --git a/icu4c/source/test/intltest/loctest.cpp b/icu4c/source/test/intltest/loctest.cpp index d62e2548a24..14244efa704 100644 --- a/icu4c/source/test/intltest/loctest.cpp +++ b/icu4c/source/test/intltest/loctest.cpp @@ -4124,6 +4124,15 @@ LocaleTest::TestAddLikelyAndMinimizeSubtags() { "en_PSCRACK", "en_Latn_US_PSCRACK", "en__PSCRACK" + }, { + // ICU-22765 + "th@x=private", + "th_Thai_TH@x=private", + "th@x=private", + }, { + "und@x=private", + "en_Latn_US@x=private", + "en@x=private", } }; diff --git a/icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java b/icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java index 02146417fc3..e862efccf3a 100644 --- a/icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java +++ b/icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java @@ -4162,7 +4162,15 @@ public class ULocaleTest extends CoreTestFmwk { "und_US", "en_Latn_US", "en" - } + }, { + "th@x=private", + "th_Thai_TH@x=private", + "th@x=private", + }, { + "und@x=private", + "en_Latn_US@x=private", + "en@x=private", + } }; for (int i = 0; i < full_data.length; i++) {