From 76066e56fcebe58ef4a701de43bc9c3bea6bc47d Mon Sep 17 00:00:00 2001 From: Hinidu Date: Sat, 12 Apr 2014 10:31:35 +0300 Subject: Remove FEAT_TITLE 'title' and 'icon' options --- src/nvim/term.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/nvim') diff --git a/src/nvim/term.c b/src/nvim/term.c index 7ec758fc92..932d58f76d 100644 --- a/src/nvim/term.c +++ b/src/nvim/term.c @@ -2082,8 +2082,6 @@ static void out_char_nf(unsigned c) out_flush(); } -#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \ - || defined(FEAT_TERMRESPONSE) || defined(PROTO) /* * A never-padding out_str. * use this whenever you don't want to run the string through tputs. @@ -2104,7 +2102,6 @@ void out_str_nf(char_u *s) if (p_wd) out_flush(); } -#endif /* * out_str(s): Put a character string a byte at a time into the output buffer. @@ -2219,8 +2216,7 @@ static void term_color(char_u *s, int n) OUT_STR(tgoto((char *)s, 0, n)); } -#if (defined(FEAT_TITLE) && (defined(UNIX) || \ - defined(MACOS_X))) || defined(PROTO) +#if defined(UNIX) || defined(MACOS_X) || defined(PROTO) /* * Generic function to set window title, using t_ts and t_fs. */ -- cgit