From e89ff0472bc33779583d48e8d38a5e794d05613a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 20 Feb 2016 22:17:05 +0100 Subject: patch 7.4.1375 Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi) --- src/term.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/term.c') diff --git a/src/term.c b/src/term.c index 6a6ab78ed..b38a4364e 100644 --- a/src/term.c +++ b/src/term.c @@ -2479,11 +2479,7 @@ termcapinit(char_u *name) #ifdef DOS16 # define OUT_SIZE 255 /* only have 640K total... */ #else -# ifdef FEAT_GUI_W16 -# define OUT_SIZE 1023 /* Save precious 1K near data */ -# else -# define OUT_SIZE 2047 -# endif +# define OUT_SIZE 2047 #endif /* Add one to allow mch_write() in os_win32.c to append a NUL */ static char_u out_buf[OUT_SIZE + 1]; -- cgit v1.2.1