This commit is contained in:
Yukari Hafner 2025-08-15 04:30:33 +08:00 committed by GitHub
commit 93de5df89b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1706,11 +1706,11 @@ static void keyboardHandleKeymap(void* userData,
// Look up the preferred locale, falling back to "C" as default.
locale = getenv("LC_ALL");
if (!locale)
if (!locale || strlen(locale) == 0)
locale = getenv("LC_CTYPE");
if (!locale)
if (!locale || strlen(locale) == 0)
locale = getenv("LANG");
if (!locale)
if (!locale || strlen(locale) == 0)
locale = "C";
composeTable =