forked from aniani/vim
patch 8.0.1010: build failure without termresponse feature
Problem: Build failure without termresponse feature. Solution: Add #ifdef.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
/*
|
||||
|
@@ -769,6 +769,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1010,
|
||||
/**/
|
||||
1009,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user