1
0
forked from aniani/vim

patch 7.4.1375

Problem:    Still some Win16 code.
Solution:   Remove FEAT_GUI_W16.(Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2016-02-20 22:17:05 +01:00
parent af7559f666
commit e89ff0472b
13 changed files with 16 additions and 232 deletions

View File

@@ -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];