From a7c674e03ebc6d818ef779266ca628d8641ea8a3 Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Sun, 23 Oct 2011 10:45:17 +0300 Subject: [PATCH] zshenv: Removed unrequired line, by merging it to one line above. These two do the same thing. Before: LC_ALL=C export LC_ALL After: export LC_ALL=C --- zshenv | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zshenv b/zshenv index 739ff421..26f48d96 100644 --- a/zshenv +++ b/zshenv @@ -8,8 +8,7 @@ export EDITOR=nano # Fixes locale problems (for example) when SSHing in with different locale. (Another example: Hailo plugin for supybot gives locale errors, this fixes it.) # Replace "C" with your locale. You can get list of locales by running "locale -a". Replace "C" with your language. For example: fi_FI.utf8 ) -LC_ALL=C -export LC_ALL +export LC_ALL=C # Sets your timezone. Set in format , or just timezone like UTC. #export TZ="/usr/share/zoneinfo/Europe/Helsinki"