From e6edfa961726abd251cd8daf9558d40d553f3d1d Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 29 Jul 2014 22:55:49 +0200 Subject: Drop SGI IRIS support. #1006 --- src/nvim/os_unix.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/nvim/os_unix.c') diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 9e7940bc2a..4809f0c38c 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -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 -- cgit