Skip to content

Commit 3c37a8e

Browse files
committed
patch 8.0.1010: build failure without termresponse feature
Problem: Build failure without termresponse feature. Solution: Add #ifdef.
1 parent 4db2554 commit 3c37a8e

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/term.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3780,8 +3780,12 @@ term_cursor_color(char_u *color)
37803780
int
37813781
blink_state_is_inverted()
37823782
{
3783+
#ifdef FEAT_TERMRESPONSE
37833784
return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
37843785
&& initial_cursor_blink != initial_cursor_shape_blink;
3786+
#else
3787+
return FALSE;
3788+
#endif
37853789
}
37863790

37873791
/*

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
1010,
772774
/**/
773775
1009,
774776
/**/

0 commit comments

Comments
 (0)