# HG changeset patch # User Bram Moolenaar # Date 1550322905 -3600 # Node ID cea7a0fde805175a3c50e4ea6e0a37af55e8b389 # Parent 771cd837098cd15c26a5cf629025713e9034d2f6 patch 8.1.0931: vtp_working included in GUI build but unused commit https://github.com/vim/vim/commit/6902c0eb27a3e4479445badfef31443f2227fe60 Author: Bram Moolenaar Date: Sat Feb 16 14:07:37 2019 +0100 patch 8.1.0931: vtp_working included in GUI build but unused Problem: vtp_working included in GUI build but unused. Solution: Adjust #ifdefs. (Ken Takata, closes https://github.com/vim/vim/issues/3971) diff --git a/src/os_win32.c b/src/os_win32.c --- a/src/os_win32.c +++ b/src/os_win32.c @@ -186,12 +186,12 @@ static int win32_getattrs(char_u *name); static int win32_setattrs(char_u *name, int attrs); static int win32_set_archive(char_u *name); -static int vtp_working = 0; static int conpty_working = 0; static int conpty_stable = 0; static void vtp_flag_init(); #ifndef FEAT_GUI_W32 +static int vtp_working = 0; static void vtp_init(); static void vtp_exit(); static int vtp_printf(char *format, ...); @@ -7874,14 +7874,14 @@ is_term_win32(void) return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0; } -#endif - int has_vtp_working(void) { return vtp_working; } +#endif + int has_conpty_working(void) { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 931, +/**/ 930, /**/ 929,