diff options
-rwxr-xr-x | lang.csh | 2 | ||||
-rwxr-xr-x | lang.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -74,7 +74,7 @@ if ($sourced == 1) then if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( `/sbin/consoletype` == "vt" ) then - if ( -f /bin/unicode_start ) then + if ( -x /bin/unicode_start ) then if ( $?SYSFONTACM ) then unicode_start $SYSFONT $SYSFONTACM else @@ -70,7 +70,7 @@ if [ "$sourced" = 1 ]; then case $LANG in *.utf8*|*.UTF-8*) if [ "$TERM" = "linux" -a "`/sbin/consoletype`" = "vt" ]; then - [ -f /bin/unicode_start ] && unicode_start $SYSFONT $SYSFONTACM + [ -x /bin/unicode_start ] && unicode_start $SYSFONT $SYSFONTACM fi ;; esac |