diff options
author | Bill Nottingham <notting@redhat.com> | 2003-03-03 21:04:05 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-03-03 21:04:05 +0000 |
commit | aac707b24ff964ab16c886a760adf63af3ff71b2 (patch) | |
tree | 01a3b0cc00af1e7cc3494933bc3a64bad153fb66 /lang.sh | |
parent | f19fe45b3669acc1683d34334fa62a355212213e (diff) | |
download | initscripts-aac707b24ff964ab16c886a760adf63af3ff71b2.tar initscripts-aac707b24ff964ab16c886a760adf63af3ff71b2.tar.gz initscripts-aac707b24ff964ab16c886a760adf63af3ff71b2.tar.bz2 initscripts-aac707b24ff964ab16c886a760adf63af3ff71b2.tar.xz initscripts-aac707b24ff964ab16c886a760adf63af3ff71b2.zip |
check for unicode_start before invocation (#85413)
Diffstat (limited to 'lang.sh')
-rwxr-xr-x | lang.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ if [ "$sourced" = 1 ]; then case $LANG in *.utf8*|*.UTF-8*) if [ "$TERM" = "linux" -a "`/sbin/consoletype`" = "vt" ]; then - unicode_start $SYSFONT $SYSFONTACM + [ -f /bin/unicode_start ] && unicode_start $SYSFONT $SYSFONTACM fi ;; esac |