X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=shell%2Fenv;h=2c81633320a1b737a1e13e3112843326b165c518;hb=5efc050967341ae8dc569496642ca311a41370f7;hp=74f676ce748d93d774bc0c92a20a8ffe001d8408;hpb=41ea59fcb1a20d7ab6df9aad1552243dea7d52b0;p=config%2Fdotfiles.git diff --git a/shell/env b/shell/env index 74f676c..2c81633 100644 --- a/shell/env +++ b/shell/env @@ -20,10 +20,15 @@ source_debug ". ~/.shell/env" # Use UTF-8 encoding in the terminal. Don't use LC_ALL as it's used for -# debugging purposes. Thanks to twb in Freenode/#screen (2009-10-02 10:25). +# debugging purposes. Thanks to twb in #screen on Freenode (2009-10-02 10:25 +# CET). 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"