]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - shell/env
shell/env: Unset LANGUAGE.
[config/dotfiles.git] / shell / env
index f11e687adf53c0663fcb5571377ee46d6437a58c..2c81633320a1b737a1e13e3112843326b165c518 100644 (file)
--- a/shell/env
+++ b/shell/env
@@ -25,6 +25,10 @@ source_debug ". ~/.shell/env"
 LANG=en_US.UTF-8
 export LANG
 
+# Make sure $LANGUAGE is not set. It's a GNU extension which can overwrite
+# variables like $LANG or $LC_ALL.
+unset LANGUAGE
+
 # Add ~/bin and ~/.bin and ~/.shell/bin to PATH if available.
 if test -d "$HOME/.shell/bin"; then
     PATH="$HOME/.shell/bin:$PATH"