+unset LANG
authorshort <>
Wed, 24 Oct 2001 15:47:28 +0000 (15:47 +0000)
committershort <>
Wed, 24 Oct 2001 15:47:28 +0000 (15:47 +0000)
 - even when LANG is set to "en_US" it is lethal - strcoll() starts to sort
   case-insensitively!

.bashrc

diff --git a/.bashrc b/.bashrc
index c1a83bc..7ebf6ab 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -55,6 +55,9 @@ export PERL_MM_OPT="PREFIX=$HOME"
 export WWW_HOME="file:///home/short/.bookmarks.html"
 export GREP_OPTIONS="--binary-files=without-match --directories=skip"
 
+# even when LANG is set to "en_US" it is lethal - strcoll() starts to sort case-insensitively!
+unset LANG
+
 function cvsdiff    { cvs diff   "$@" 2>&1|             less; }; export -f cvsdiff
 function cvsdiffi   { cvs diff   "$@" 2>&1|grep -v '^?'|less; }; export -f cvsdiffi
 function cvsupdate  { cvs update "$@" 2>&1|             less; }; export -f cvsupdate