This commit is contained in:
Yukari Hafner 2025-06-20 20:08:06 +00:00 committed by GitHub
commit d5e7a037d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1682,11 +1682,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 =