This commit is contained in:
Yukari Hafner 2025-07-18 13:12:26 +02:00 committed by GitHub
commit 19df4f02ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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