diff options
-rwxr-xr-x | lang.csh | 3 | ||||
-rwxr-xr-x | lang.sh | 2 | ||||
-rwxr-xr-x | setsysfont | 2 |
3 files changed, 4 insertions, 3 deletions
@@ -61,7 +61,8 @@ if ($sourced == 1) then endif if ($?LANG) then switch ($LANG) - case *.utf8; + case *.utf8: + case *.UTF-8: if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( `/sbin/consoletype` == "vt" ) then @@ -64,7 +64,7 @@ if [ "$sourced" = 1 ]; then fi if [ -n "$LANG" ]; then case $LANG in - *.utf8) + *.utf8|*.UTF-8) if [ "$TERM" = "linux" -a "`/sbin/consoletype`" = "vt" ]; then unicode_start fi @@ -8,7 +8,7 @@ fi if [ -n "$LANG" ]; then case $LANG in - *.utf8) + *.utf8|*.UTF-8) if [ -n "$SYSFONT" ]; then if [ -n "$SYSFONTACM" ]; then unicode_start $SYSFONT $SYSFONTACM |