diff options
-rwxr-xr-x | lang.csh | 2 | ||||
-rwxr-xr-x | lang.sh | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -29,6 +29,7 @@ if ($sourced == 1) then switch ($CHARSET) case 8859-1: case 8859-2: + case 8859-5: case 8859-15: case koi*: case latin2*: @@ -46,6 +47,7 @@ if ($sourced == 1) then switch ($SYSFONTACM) case iso01*: case iso02*: + case iso05*: case iso15*: case koi*: case latin2-ucw*: @@ -47,7 +47,7 @@ if [ "$sourced" = 1 ]; then if [ -n "$CHARSET" ]; then case $CHARSET in - 8859-1|8859-2|8859-15|koi*) + 8859-1|8859-2|8859-5|8859-15|koi*) if [ "$TERM" = "linux" -a "`/sbin/consoletype`" = "vt" ]; then echo -n -e '\033(K' 2>/dev/null > /proc/$$/fd/0 fi @@ -55,7 +55,7 @@ if [ "$sourced" = 1 ]; then esac elif [ -n "$SYSFONTACM" ]; then case $SYSFONTACM in - iso01*|iso02*|iso15*|koi*|latin2-ucw*) + iso01*|iso02*|iso05*|iso15*|koi*|latin2-ucw*) if [ "$TERM" = "linux" -a "`/sbin/consoletype`" = "vt" ]; then echo -n -e '\033(K' 2>/dev/null > /proc/$$/fd/0 fi |