1
0
forked from aniani/vim

patch 9.0.0948: 'ttyfast' is set for arbitrary terminals

Problem:    'ttyfast' is set for arbitrary terminals.
Solution:   Always set 'ttyfast'. (closes #11549)
This commit is contained in:
Bram Moolenaar
2022-11-25 15:09:35 +00:00
parent cc762a48d4
commit c1cf4c9107
9 changed files with 22 additions and 54 deletions

View File

@@ -2174,21 +2174,6 @@ set_termname(char_u *term)
}
#endif
#if defined(UNIX) || defined(VMS)
/*
* 'ttyfast' is default on for xterm, iris-ansi and a few others.
*/
if (vim_is_fastterm(term))
p_tf = TRUE;
#endif
#ifdef USE_TERM_CONSOLE
/*
* 'ttyfast' is default on consoles
*/
if (term_console)
p_tf = TRUE;
#endif
ttest(TRUE); // make sure we have a valid set of terminal codes
full_screen = TRUE; // we can use termcap codes from now on