# HG changeset patch # User Christian Brabandt # Date 1493578804 -7200 # Node ID d1b6cf96882a63e8adb3696c8e2e1a78f56d4abf # Parent fb4f0fc43631e031b333d06c1016cc75a7791b30 patch 8.0.0594: build failure when windows feature is missing commit https://github.com/vim/vim/commit/66c0e70b806cd8afdc9da9ddae11945ddf29841a Author: Bram Moolenaar Date: Sun Apr 30 20:46:32 2017 +0200 patch 8.0.0594: build failure when windows feature is missing Problem: Build failure when windows feature is missing. Solution: Add #ifdef. diff --git a/src/screen.c b/src/screen.c --- a/src/screen.c +++ b/src/screen.c @@ -275,7 +275,9 @@ redraw_buf_and_status_later(buf_T *buf, if (wp->w_buffer == buf) { redraw_win_later(wp, type); +#ifdef FEAT_WINDOWS wp->w_redr_status = TRUE; +#endif } } } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 594, +/**/ 593, /**/ 592,