diff options
author | Bill Nottingham <notting@redhat.com> | 2006-10-06 18:03:42 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2006-10-06 18:03:42 +0000 |
commit | 2b3d8c98c1ac5dd5c5aeecfd02298e0c7355734f (patch) | |
tree | 365af410e6e1c50ad9e8b6cf87bb722dc9b511d4 /lang.sh | |
parent | a6de97cd931e3e60e371abc08c7be4f36172f1b7 (diff) | |
download | initscripts-2b3d8c98c1ac5dd5c5aeecfd02298e0c7355734f.tar initscripts-2b3d8c98c1ac5dd5c5aeecfd02298e0c7355734f.tar.gz initscripts-2b3d8c98c1ac5dd5c5aeecfd02298e0c7355734f.tar.bz2 initscripts-2b3d8c98c1ac5dd5c5aeecfd02298e0c7355734f.tar.xz initscripts-2b3d8c98c1ac5dd5c5aeecfd02298e0c7355734f.zip |
remove stty calls. Too much fun with SIGTTOU (#209469)
Diffstat (limited to 'lang.sh')
-rwxr-xr-x | lang.sh | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -63,9 +63,6 @@ if [ "$sourced" = 1 ]; then if [ -n "$LANG" ]; then case $LANG in *.utf8*|*.UTF-8*) - if [ "$consoletype" = "vt" -o "$consoletype" = "pty" ]; then - stty iutf8 - fi if [ "$TERM" = "linux" ]; then if [ "$consoletype" = "vt" ]; then [ -x /bin/unicode_start ] && /sbin/consoletype fg && /bin/unicode_start $SYSFONT $SYSFONTACM @@ -73,9 +70,6 @@ if [ "$sourced" = 1 ]; then fi ;; *) - if [ "$consoletype" = "vt" -o "$consoletype" = "pty" ]; then - stty -iutf8 - fi if [ "$TERM" = "linux" ]; then if [ "$consoletype" = "vt" ]; then [ -x /bin/unicode_stop ] && /sbin/consoletype fg && /bin/unicode_stop |