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:
@@ -3780,8 +3780,12 @@ term_cursor_color(char_u *color)
|
|||||||
int
|
int
|
||||||
blink_state_is_inverted()
|
blink_state_is_inverted()
|
||||||
{
|
{
|
||||||
|
#ifdef FEAT_TERMRESPONSE
|
||||||
return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
|
return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
|
||||||
&& initial_cursor_blink != initial_cursor_shape_blink;
|
&& initial_cursor_blink != initial_cursor_shape_blink;
|
||||||
|
#else
|
||||||
|
return FALSE;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -769,6 +769,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1010,
|
||||||
/**/
|
/**/
|
||||||
1009,
|
1009,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user