From f374674caa59a56f33b17935d13d88fd6c709203 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Wed, 15 Mar 2006 18:47:27 +0000 Subject: [PATCH 1/1] bash_profile: Unset LANG. Various programs behave very oddly with LANG set. For example, `ls' sorts case-insensitively, which is quite obviously mad. Turn this brain- damage off. --- bash_profile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bash_profile b/bash_profile index c95db15..64a85f1 100644 --- a/bash_profile +++ b/bash_profile @@ -99,6 +99,8 @@ umask 002 [ -z "$HOST" ] && export HOST=`hostname` +unset LANG + export EDITOR="emacs -nw"; export VISUAL="$EDITOR" export TEXINPUTS=".:$HOME/lib/tex//:" -- 2.11.0