aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2006-10-30 17:10:21 +0000
committerBill Nottingham <notting@redhat.com>2006-10-30 17:10:21 +0000
commitd2eb9f201d0763a32540658849da6acbb08a41b8 (patch)
tree1396ca6334b4d97c6a00b36d6db3a14e2ed09184
parent092f7d4f0595aeec11fac5560927428a234a175d (diff)
downloadinitscripts-d2eb9f201d0763a32540658849da6acbb08a41b8.tar
initscripts-d2eb9f201d0763a32540658849da6acbb08a41b8.tar.gz
initscripts-d2eb9f201d0763a32540658849da6acbb08a41b8.tar.bz2
initscripts-d2eb9f201d0763a32540658849da6acbb08a41b8.tar.xz
initscripts-d2eb9f201d0763a32540658849da6acbb08a41b8.zip
support iso-8859-8 (#212738, <matan@svgalib.org>)
-rwxr-xr-xlang.csh2
-rwxr-xr-xlang.sh4
2 files changed, 4 insertions, 2 deletions
diff --git a/lang.csh b/lang.csh
index 25d59f0c..5439611d 100755
--- a/lang.csh
+++ b/lang.csh
@@ -33,6 +33,7 @@ if ($sourced == 1) then
case 8859-1:
case 8859-2:
case 8859-5:
+ case 8859-8:
case 8859-15:
case koi*:
case latin2*:
@@ -51,6 +52,7 @@ if ($sourced == 1) then
case iso01*:
case iso02*:
case iso05*:
+ case iso08*:
case iso15*:
case koi*:
case latin2-ucw*:
diff --git a/lang.sh b/lang.sh
index 7c0332b2..c7847849 100755
--- a/lang.sh
+++ b/lang.sh
@@ -45,7 +45,7 @@ if [ "$sourced" = 1 ]; then
if [ -n "$CHARSET" ]; then
case $CHARSET in
- 8859-1|8859-2|8859-5|8859-15|koi*)
+ 8859-1|8859-2|8859-5|8859-8|8859-15|koi*)
if [ "$TERM" = "linux" -a "$consoletype" = "vt" ]; then
echo -n -e '\033(K' 2>/dev/null > /proc/$$/fd/0
fi
@@ -53,7 +53,7 @@ if [ "$sourced" = 1 ]; then
esac
elif [ -n "$SYSFONTACM" ]; then
case $SYSFONTACM in
- iso01*|iso02*|iso05*|iso15*|koi*|latin2-ucw*)
+ iso01*|iso02*|iso05*|iso08*|iso15*|koi*|latin2-ucw*)
if [ "$TERM" = "linux" -a "$consoletype" = "vt" ]; then
echo -n -e '\033(K' 2>/dev/null > /proc/$$/fd/0
fi