# HG changeset patch # User Christian Brabandt # Date 1503954904 -7200 # Node ID 875d7cc9b127ab4b449bfff896ebc89b16a5fc78 # Parent 02a1228712dacd6713b39f0f7ac42eaf48557b40 patch 8.0.1010: build failure without termresponse feature commit https://github.com/vim/vim/commit/3c37a8e66008aadfe428a32ecf46aab4b9e285ae Author: Bram Moolenaar Date: Mon Aug 28 23:00:55 2017 +0200 patch 8.0.1010: build failure without termresponse feature Problem: Build failure without termresponse feature. Solution: Add #ifdef. diff --git a/src/term.c b/src/term.c --- a/src/term.c +++ b/src/term.c @@ -3780,8 +3780,12 @@ term_cursor_color(char_u *color) int blink_state_is_inverted() { +#ifdef FEAT_TERMRESPONSE return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT && initial_cursor_blink != initial_cursor_shape_blink; +#else + return FALSE; +#endif } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1010, +/**/ 1009, /**/ 1008,