diff options
author | Nalin Dahyabhai <nalin@redhat.com> | 2001-08-20 15:33:33 +0000 |
---|---|---|
committer | Nalin Dahyabhai <nalin@redhat.com> | 2001-08-20 15:33:33 +0000 |
commit | 397bcf255c007f68b75067e2b86c89fb041fdd9d (patch) | |
tree | fd5229fe0ceb1ebdea68f7e5645877916874d062 /lang.csh | |
parent | 152c8f3ab577dbbce1b17ee1db1996d00d789295 (diff) | |
download | initscripts-397bcf255c007f68b75067e2b86c89fb041fdd9d.tar initscripts-397bcf255c007f68b75067e2b86c89fb041fdd9d.tar.gz initscripts-397bcf255c007f68b75067e2b86c89fb041fdd9d.tar.bz2 initscripts-397bcf255c007f68b75067e2b86c89fb041fdd9d.tar.xz initscripts-397bcf255c007f68b75067e2b86c89fb041fdd9d.zip |
- fix syntax error in lang.cshr6-22
- set codeset by echoing to /dev/tty instead of /proc/self/fd/15
Diffstat (limited to 'lang.csh')
-rwxr-xr-x | lang.csh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -52,7 +52,7 @@ if ($sourced == 1) then if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( `/sbin/consoletype` == "vt" ) then - /bin/echo -n -e '\033(K' > /proc/$$/fd/15 + /bin/echo -n -e '\033(K' > /dev/tty endif endif endif @@ -63,7 +63,7 @@ if ($sourced == 1) then unsetenv SYSFONT endif -if ($?LANG) +if ($?LANG) then switch ($LANG) case ja*: case zh*: |