diff options
author | Bill Nottingham <notting@redhat.com> | 2003-07-08 20:22:28 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-07-08 20:22:28 +0000 |
commit | bbad0baf36cbe5c58b6f5767ca1370af598b6dd5 (patch) | |
tree | 43fc6a826f4c959ae7c1e843e7c41aacfeffdd81 /lang.sh | |
parent | 9c51f7ea621bd202c58a44a61772acf97c8a48c0 (diff) | |
download | initscripts-bbad0baf36cbe5c58b6f5767ca1370af598b6dd5.tar initscripts-bbad0baf36cbe5c58b6f5767ca1370af598b6dd5.tar.gz initscripts-bbad0baf36cbe5c58b6f5767ca1370af598b6dd5.tar.bz2 initscripts-bbad0baf36cbe5c58b6f5767ca1370af598b6dd5.tar.xz initscripts-bbad0baf36cbe5c58b6f5767ca1370af598b6dd5.zip |
check that we're the current foreground console before running
unicode_start
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 - [ -x /bin/unicode_start ] && unicode_start $SYSFONT $SYSFONTACM + [ -x /bin/unicode_start ] && /sbin/consoletype fg && unicode_start $SYSFONT $SYSFONTACM fi ;; esac |