Skip to content

Commit 3e9d4d8

Browse files
committed
patch 8.1.0835: GUI build fails on MS-Windows
Problem: GUI build fails on MS-Windows. Solution: Adjust #ifdef.
1 parent e40b9d4 commit 3e9d4d8

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/ui.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ inchar_loop(
399399
#endif
400400

401401
if ((resize_func != NULL && resize_func(TRUE))
402-
#ifdef FEAT_CLIENTSERVER
402+
#if defined(FEAT_CLIENTSERVER) && defined(UNIX)
403403
|| server_waiting()
404404
#endif
405405
#ifdef MESSAGE_QUEUE

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -783,6 +783,8 @@ static char *(features[]) =
783783

784784
static int included_patches[] =
785785
{ /* Add new patch number below this line */
786+
/**/
787+
835,
786788
/**/
787789
834,
788790
/**/

0 commit comments

Comments
 (0)