zshrc: do not fall back to LANG en_US.iso885915 if it is unset v0.3.70
authorMichael Prokop <mika@grml.org>
Mon, 18 May 2009 20:32:37 +0000 (22:32 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 18 May 2009 20:32:37 +0000 (22:32 +0200)
debian/changelog
etc/zsh/zshrc

index 2f580b8..ff35441 100644 (file)
@@ -1,3 +1,11 @@
+grml-etc-core (0.3.70) unstable; urgency=low
+
+  * zshrc: do not fall back to LANG en_US.iso885915 if it is unset.
+    (For one reason because we prefer utf8 nowdays, on the other
+    side it should resolve a cosmetic locales problem from grml-small.)
+
+ -- Michael Prokop <mika@grml.org>  Mon, 18 May 2009 22:31:46 +0200
+
 grml-etc-core (0.3.69) unstable; urgency=low
 
   * zshrc: properly source the global zshrc.local via zrclocal(), to
index 9756914..7773ed9 100644 (file)
@@ -458,8 +458,7 @@ zrclocal() {
 # locale setup {{{
 xsource "/etc/default/locale"
 
-export LANG=${LANG:-en_US.iso885915}
-for var in LC_ALL LC_MESSAGES ; do
+for var in LANG LC_ALL LC_MESSAGES ; do
     [[ -n ${(P)var} ]] && export $var
 done