aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2002-09-02 04:49:25 +0000
committerBill Nottingham <notting@redhat.com>2002-09-02 04:49:25 +0000
commit5b305b04c3706f37a2c38d41c7d01b8bd7bf2411 (patch)
tree4235510d67f2c34c03233f5e9aa2ad41f6edd2d3
parent7e7ed36b1c34179033e99091bc974ce419e9b136 (diff)
downloadinitscripts-5b305b04c3706f37a2c38d41c7d01b8bd7bf2411.tar
initscripts-5b305b04c3706f37a2c38d41c7d01b8bd7bf2411.tar.gz
initscripts-5b305b04c3706f37a2c38d41c7d01b8bd7bf2411.tar.bz2
initscripts-5b305b04c3706f37a2c38d41c7d01b8bd7bf2411.tar.xz
initscripts-5b305b04c3706f37a2c38d41c7d01b8bd7bf2411.zip
fix calling of unicode_start (#73158)
-rwxr-xr-xlang.csh2
-rwxr-xr-xlang.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/lang.csh b/lang.csh
index 10be0c47..f2ced68b 100755
--- a/lang.csh
+++ b/lang.csh
@@ -68,7 +68,7 @@ if ($sourced == 1) then
if ( $?TERM ) then
if ( "$TERM" == "linux" ) then
if ( `/sbin/consoletype` == "vt" ) then
- unicode_start
+ unicode_start $SYSFONT $SYSFONTACM
endif
endif
endif
diff --git a/lang.sh b/lang.sh
index 87b9b541..49459292 100755
--- a/lang.sh
+++ b/lang.sh
@@ -66,7 +66,7 @@ if [ "$sourced" = 1 ]; then
case $LANG in
*.utf8*|*.UTF-8*)
if [ "$TERM" = "linux" -a "`/sbin/consoletype`" = "vt" ]; then
- unicode_start
+ unicode_start $SYSFONT $SYSFONTACM
fi
;;
esac