diff options
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 0540fc950..fd6d35fed 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2438,24 +2438,6 @@ vim_is_vt300(char_u *name) } /* - * Return TRUE if "name" is a terminal for which 'ttyfast' should be set. - * This should include all windowed terminal emulators. - */ - int -vim_is_fastterm(char_u *name) -{ - if (name == NULL) - return FALSE; - if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name)) - return TRUE; - return ( STRNICMP(name, "hpterm", 6) == 0 - || STRNICMP(name, "sun-cmd", 7) == 0 - || STRNICMP(name, "screen", 6) == 0 - || STRNICMP(name, "tmux", 4) == 0 - || STRNICMP(name, "dtterm", 6) == 0); -} - -/* * Insert user name in s[len]. * Return OK if a name found. */ |