diff options
author | Bill Nottingham <notting@redhat.com> | 2002-11-12 04:55:23 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-11-12 04:55:23 +0000 |
commit | 20ae4196e1aae687e7adeb95f59f38cd7de85bf6 (patch) | |
tree | eaa63bb0724d41234456495574eecc6612daf18f /lang.csh | |
parent | 034a7a6cc45ee0614a85c62b25f974fe3a3c013f (diff) | |
download | initscripts-20ae4196e1aae687e7adeb95f59f38cd7de85bf6.tar initscripts-20ae4196e1aae687e7adeb95f59f38cd7de85bf6.tar.gz initscripts-20ae4196e1aae687e7adeb95f59f38cd7de85bf6.tar.bz2 initscripts-20ae4196e1aae687e7adeb95f59f38cd7de85bf6.tar.xz initscripts-20ae4196e1aae687e7adeb95f59f38cd7de85bf6.zip |
fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
Diffstat (limited to 'lang.csh')
-rwxr-xr-x | lang.csh | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -85,10 +85,18 @@ endif if ($?LANG) then switch ($LANG) + case ja*UTF-8: + case zh*UTF-8: + case ko*UTF-8: + set dspmbyte=utf8 + breaksw + case zh_TW*: + set dspmbyte=big5 + breaksw case ja*: - case zh*: case ko*: - set dspmpbyte=euc + case zh*: + set dspmbyte=euc breaksw endsw endif |