This commit is contained in:
Yukari Hafner 2025-09-04 13:15:20 +02:00 committed by GitHub
commit f39e41a4a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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