aboutsummaryrefslogtreecommitdiffstats
path: root/lang.csh
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2000-10-29 05:55:29 +0000
committerBill Nottingham <notting@redhat.com>2000-10-29 05:55:29 +0000
commitef5c4d8f0c2a3251baad0f80a7fd283a82bb72b5 (patch)
tree6091dfca14620bfbfaaa7ee73c6d4e3aa008f4d7 /lang.csh
parent8e179b7f2552facedde4d1676e61e56a2eee6b36 (diff)
downloadinitscripts-ef5c4d8f0c2a3251baad0f80a7fd283a82bb72b5.tar
initscripts-ef5c4d8f0c2a3251baad0f80a7fd283a82bb72b5.tar.gz
initscripts-ef5c4d8f0c2a3251baad0f80a7fd283a82bb72b5.tar.bz2
initscripts-ef5c4d8f0c2a3251baad0f80a7fd283a82bb72b5.tar.xz
initscripts-ef5c4d8f0c2a3251baad0f80a7fd283a82bb72b5.zip
don't turn locale settings of 'C' into en_US
Diffstat (limited to 'lang.csh')
-rwxr-xr-xlang.csh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang.csh b/lang.csh
index 654ec934..b644c16c 100755
--- a/lang.csh
+++ b/lang.csh
@@ -3,7 +3,7 @@
set sourced=0
foreach file (/etc/sysconfig/i18n $HOME/.i18n)
if ( -f $file ) then
- eval `sed 's|=C$|=en_US|g' $file | sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' | sed 's|$|;|' `
+ eval `sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' $file | sed 's|$|;|' `
endif
set sourced=1
end