mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-20 20:19:32 +00:00
ICU-4461 Allow EBCDIC machines to declare UTF-16 strings.
Add detection for something else that is like en_US_POSIX. X-SVN-Rev: 17395
This commit is contained in:
parent
b534c0bffc
commit
50edb1dedd
1 changed files with 2 additions and 1 deletions
|
@ -1754,7 +1754,8 @@ The leftmost codepage (.xxx) wins.
|
|||
*/
|
||||
if ((uprv_strcmp("C", correctedLocale) == 0) ||
|
||||
(uprv_strcmp("POSIX", correctedLocale) == 0) ||
|
||||
(uprv_strcmp("QLGPGCMA", correctedLocale) == 0))
|
||||
(uprv_strcmp("QLGPGCMA", correctedLocale) == 0) ||
|
||||
(uprv_strcmp("QLGPGCMA2", correctedLocale) == 0))
|
||||
{
|
||||
uprv_strcpy(correctedLocale, "en_US_POSIX");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue