diff src/term.c @ 8163:d8a8e86f39ad v7.4.1375

commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 20 22:17:05 2016 +0100 patch 7.4.1375 Problem: Still some Win16 code. Solution: Remove FEAT_GUI_W16.(Hirohito Higashi)
author Christian Brabandt <cb@256bit.org>
date Sat, 20 Feb 2016 22:30:05 +0100
parents 4d7ce6c03fda
children 05b88224cea1
line wrap: on
line diff
--- 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];