Drop SGI IRIS support. #1006

This commit is contained in:
Fredrik Fornwall
2014-07-29 22:55:49 +02:00
committed by Justin M. Keyes
parent 3599a834d5
commit e6edfa9617
5 changed files with 10 additions and 133 deletions

View File

@@ -307,14 +307,6 @@ int use_xterm_mouse(void)
return 0;
}
int vim_is_iris(char_u *name)
{
if (name == NULL)
return FALSE;
return STRNICMP(name, "iris-ansi", 9) == 0
|| STRCMP(name, "builtin_iris-ansi") == 0;
}
int vim_is_vt300(char_u *name)
{
if (name == NULL)
@@ -333,7 +325,7 @@ 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))
if (vim_is_xterm(name) || vim_is_vt300(name))
return TRUE;
return STRNICMP(name, "hpterm", 6) == 0
|| STRNICMP(name, "sun-cmd", 7) == 0