diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-09 23:41:54 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-15 10:57:18 -0400 |
commit | 056d99b0f6072030a8946303fce58a86fd83bf57 (patch) | |
tree | 141db73d618fd0e2aa90afc04735dd40005b8cad | |
parent | 9f591e6f23f3a2abdef08b77662b88c8c5b44375 (diff) | |
download | rneovim-056d99b0f6072030a8946303fce58a86fd83bf57.tar.gz rneovim-056d99b0f6072030a8946303fce58a86fd83bf57.tar.bz2 rneovim-056d99b0f6072030a8946303fce58a86fd83bf57.zip |
tui: fix pvs/v728
-rw-r--r-- | src/nvim/tui/tui.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index bfd9435c49..860271d209 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1817,9 +1817,8 @@ static void patch_terminfo_bugs(TUIData *data, const char *term, || tmux // per tmux manual page // https://lists.gnu.org/archive/html/screen-devel/2013-03/msg00000.html || (true_screen - && (!screen_host_linuxvt - || (screen_host_linuxvt - && (xterm_version || (vte_version > 0) || colorterm)))) + && (screen_host_linuxvt + && (xterm_version || (vte_version > 0) || colorterm))) // Since GNU Screen does not support DECSCUSR, DECSCUSR is wrapped // in DCS and output to the host terminal. || st // #7641 |