diff src/ui.c @ 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 59a1ff689b4d
children 31367ce5aac7
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