0
0
mirror of https://github.com/vim/vim.git synced 2025-10-02 05:04:20 -04:00

patch 8.0.1010: build failure without termresponse feature

Problem:    Build failure without termresponse feature.
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar
2017-08-28 23:00:55 +02:00
parent 4db2554954
commit 3c37a8e660
2 changed files with 6 additions and 0 deletions

View File

@@ -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
}
/*

View File

@@ -769,6 +769,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1010,
/**/
1009,
/**/