diff options
author | Bill Nottingham <notting@redhat.com> | 2008-02-26 01:34:52 -0500 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-02-26 01:34:52 -0500 |
commit | 39ae04ec465e4a921ef8fe80ec52587e5a7ae627 (patch) | |
tree | cf3652991f856f0a80e277f3bac9dddaaa6325b6 /lang.csh | |
parent | 1aed7b771e4b0d61ec2cabdfb267de043eb8cb9f (diff) | |
download | initscripts-39ae04ec465e4a921ef8fe80ec52587e5a7ae627.tar initscripts-39ae04ec465e4a921ef8fe80ec52587e5a7ae627.tar.gz initscripts-39ae04ec465e4a921ef8fe80ec52587e5a7ae627.tar.bz2 initscripts-39ae04ec465e4a921ef8fe80ec52587e5a7ae627.tar.xz initscripts-39ae04ec465e4a921ef8fe80ec52587e5a7ae627.zip |
Remove bits that are now extraneous with console_init.
Diffstat (limited to 'lang.csh')
-rwxr-xr-x | lang.csh | 54 |
1 files changed, 0 insertions, 54 deletions
@@ -32,44 +32,6 @@ if ($sourced == 1) then set consoletype=`/sbin/consoletype` - if ($?CHARSET) then - switch ($CHARSET) - case 8859-1: - case 8859-2: - case 8859-5: - case 8859-8: - case 8859-15: - case koi*: - case latin2*: - if ( $?TERM ) then - if ( "$TERM" == "linux" ) then - if ( "$consoletype" == "vt" ) then - /bin/echo -n -e '\033(K' >/dev/tty - endif - endif - endif - breaksw - endsw - endif - if ($?SYSFONTACM) then - switch ($SYSFONTACM) - case iso01*: - case iso02*: - case iso05*: - case iso08*: - case iso15*: - case koi*: - case latin2-ucw*: - if ( $?TERM ) then - if ( "$TERM" == "linux" ) then - if ( "$consoletype" == "vt" ) then - /bin/echo -n -e '\033(K' > /dev/tty - endif - endif - endif - breaksw - endsw - endif if ($?LANG) then switch ($LANG) case *.utf8*: @@ -88,17 +50,6 @@ if ($sourced == 1) then setenv LANG en_US.UTF-8 breaksw endsw - if ( -x /bin/unicode_start ) then - if { /sbin/consoletype fg } then - if ( $?SYSFONT ) then - if ( $?SYSFONTACM ) then - unicode_start $SYSFONT $SYSFONTACM - else - unicode_start $SYSFONT - endif - endif - endif - endif endif endif endif @@ -118,11 +69,6 @@ if ($sourced == 1) then setenv LANG en_US breaksw endsw - if ( -x /bin/unicode_stop ) then - if { /sbin/consoletype fg } then - /bin/unicode_stop - endif - endif endif endif endif |