changeset 15655:2202ab00e9f9 v8.1.0835

patch 8.1.0835: GUI build fails on MS-Windows commit https://github.com/vim/vim/commit/3e9d4d85c4b5602f072be76b51865050d51fb3c4 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Jan 2019 17:15:05 +0100
parents e36cd31b990c
children a54d64695e6f
files src/ui.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,