diff options
author | 2015-11-11 23:23:33 +0000 | |
---|---|---|
committer | 2015-11-11 23:23:33 +0000 | |
commit | 9d9897d9ba9b1443fee03e9f744e0cb11ff9ebda (patch) | |
tree | 42622cca9ed8a18e27d11d6d059ef280bc311ec5 /usr.bin/tmux/tmux.c | |
parent | update NAME; (diff) | |
download | wireguard-openbsd-9d9897d9ba9b1443fee03e9f744e0cb11ff9ebda.tar.xz wireguard-openbsd-9d9897d9ba9b1443fee03e9f744e0cb11ff9ebda.zip |
Drop mouse-utf8 option and always turn on UTF-8 mouse if the client says
it supports UTF-8.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 01216a5b54a..5a25776dfcf 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.149 2015/10/28 09:51:55 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.150 2015/11/11 23:23:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -294,7 +294,6 @@ main(int argc, char **argv) /* Enable UTF-8 if the first client is on UTF-8 terminal. */ if (flags & CLIENT_UTF8) { options_set_number(global_s_options, "status-utf8", 1); - options_set_number(global_s_options, "mouse-utf8", 1); options_set_number(global_w_options, "utf8", 1); } |