Skip to content

Commit 66c0e70

Browse files
committed
patch 8.0.0594: build failure when windows feature is missing
Problem: Build failure when windows feature is missing. Solution: Add #ifdef.
1 parent 45cf6e9 commit 66c0e70

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/screen.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,9 @@ redraw_buf_and_status_later(buf_T *buf, int type)
275275
if (wp->w_buffer == buf)
276276
{
277277
redraw_win_later(wp, type);
278+
#ifdef FEAT_WINDOWS
278279
wp->w_redr_status = TRUE;
280+
#endif
279281
}
280282
}
281283
}

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
594,
767769
/**/
768770
593,
769771
/**/

0 commit comments

Comments
 (0)