From: stffrdhrn Date: Sat, 3 Dec 2005 12:53:02 +0000 (+0000) Subject: Suggestion from Ramkumar X-Git-Tag: submit/efl/20131021.015651~14431 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97fd4f7d8756d2c7fe9107542d31a3e7fda8806b;p=platform%2Fupstream%2Fenlightenment.git Suggestion from Ramkumar - Do not set LANGUAGE either SVN revision: 18813 --- diff --git a/src/bin/e_intl.c b/src/bin/e_intl.c index a23b522..745176c 100644 --- a/src/bin/e_intl.c +++ b/src/bin/e_intl.c @@ -188,11 +188,12 @@ e_intl_language_set(const char *lang) if (lang) { _e_intl_language = strdup(lang); - e_util_env_set("LANGUAGE", _e_intl_language); /* Only set env vars is a non NULL locale was passed */ if (set_envars) { /* FIXME: maybe we should set these anyway? */ + if (getenv("LANGUAGE")) + e_util_env_set("LANGUAGE", _e_intl_language); if (getenv("LANG")) e_util_env_set("LANG", _e_intl_language); if (getenv("LC_ALL"))