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

View File

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