Merge pull request #140 from bluetech/fix-locale-discovery

Change the locale discovery procedure to treat empty string same as unset
pull/142/head
Ingo Bürk 2017-08-13 17:25:25 +02:00 committed by GitHub
commit 14667d8304
1 changed files with 3 additions and 3 deletions

View File

@ -977,11 +977,11 @@ int main(int argc, char *argv[]) {
errx(EXIT_FAILURE, "Could not load keymap");
const char *locale = getenv("LC_ALL");
if (!locale)
if (!locale || !*locale)
locale = getenv("LC_CTYPE");
if (!locale)
if (!locale || !*locale)
locale = getenv("LANG");
if (!locale) {
if (!locale || !*locale) {
if (debug_mode)
fprintf(stderr, "Can't detect your locale, fallback to C\n");
locale = "C";