Skip to content

Commit

Permalink
patch 9.0.0986: build failure with tiny version
Browse files Browse the repository at this point in the history
Problem:    Build failure with tiny version.
Solution:   Add #ifdef.
  • Loading branch information
brammool committed Dec 2, 2022
1 parent 1a17340 commit 5390c05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/term.c
Expand Up @@ -5156,7 +5156,9 @@ handle_key_with_modifier(
|| kitty_protocol_state == KKPS_AFTER_T_KE)
&& term_props[TPR_KITTY].tpr_status != TPR_YES)
{
#ifdef FEAT_EVAL
ch_log(NULL, "setting seenModifyOtherKeys to TRUE");
#endif
seenModifyOtherKeys = TRUE;
}

Expand Down Expand Up @@ -5435,7 +5437,9 @@ handle_csi(

// Reset seenModifyOtherKeys just in case some key combination has
// been seen that set it before we get the status response.
#ifdef FEAT_EVAL
ch_log(NULL, "setting seenModifyOtherKeys to FALSE");
#endif
seenModifyOtherKeys = FALSE;
}

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -695,6 +695,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
986,
/**/
985,
/**/
Expand Down

0 comments on commit 5390c05

Please sign in to comment.