aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmux.18
-rw-r--r--tty.c4
2 files changed, 7 insertions, 5 deletions
diff --git a/tmux.1 b/tmux.1
index 03690a66..b55fae68 100644
--- a/tmux.1
+++ b/tmux.1
@@ -109,13 +109,11 @@ flag is ignored.
Unlock the server.
.It Fl u
.Nm
-attempts to guess if the terminal is likely to support UTF-8 by first checking
+attempts to guess if the terminal is likely to support UTF-8 by checking
the
.Ev LANG
-environment variable for the string "UTF-8", and then by - if the terminal
-looks suitable - trying to print a UTF-8 character and measuring the cursor
-movement.
-These are not always successful: the
+environment variable for the string "UTF-8".
+This is not always correct: the
.Fl u
flag explicitly informs
.Nm
diff --git a/tty.c b/tty.c
index 4d81910d..06ce9248 100644
--- a/tty.c
+++ b/tty.c
@@ -134,7 +134,9 @@ tty_start_tty(struct tty *tty)
struct termios tio;
int what;
+#if 0
tty_detect_utf8(tty);
+#endif
if (tcgetattr(tty->fd, &tty->tio) != 0)
fatal("tcgetattr failed");
@@ -204,6 +206,7 @@ tty_stop_tty(struct tty *tty)
tty_raw(tty, "\033[?1000l");
}
+#if 0
void
tty_detect_utf8(struct tty *tty)
{
@@ -278,6 +281,7 @@ tty_detect_utf8(struct tty *tty)
if (tcsetattr(tty->fd, TCSANOW, &old_tio) != 0)
fatal("tcsetattr failed");
}
+#endif
void
tty_fill_acs(struct tty *tty)