# HG changeset patch # User Bram Moolenaar # Date 1548605705 -3600 # Node ID 2202ab00e9f9533a470dcb0534f350c695318255 # Parent e36cd31b990ca8d23dc79988f9c5f1b5c51d9524 patch 8.1.0835: GUI build fails on MS-Windows commit https://github.com/vim/vim/commit/3e9d4d85c4b5602f072be76b51865050d51fb3c4 Author: Bram Moolenaar Date: Sun Jan 27 17:08:40 2019 +0100 patch 8.1.0835: GUI build fails on MS-Windows Problem: GUI build fails on MS-Windows. Solution: Adjust #ifdef. diff --git a/src/ui.c b/src/ui.c --- a/src/ui.c +++ b/src/ui.c @@ -399,7 +399,7 @@ inchar_loop( #endif if ((resize_func != NULL && resize_func(TRUE)) -#ifdef FEAT_CLIENTSERVER +#if defined(FEAT_CLIENTSERVER) && defined(UNIX) || server_waiting() #endif #ifdef MESSAGE_QUEUE 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 */ /**/ + 835, +/**/ 834, /**/ 833,