0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

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 #3971)
This commit is contained in:
Bram Moolenaar
2019-02-16 14:07:37 +01:00
parent 0a1b17bbec
commit 6902c0eb27
2 changed files with 5 additions and 3 deletions

View File

@@ -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)
{

View File

@@ -783,6 +783,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
931,
/**/
930,
/**/