Skip to content

Commit

Permalink
patch 9.0.0981: build error in tiny version
Browse files Browse the repository at this point in the history
Problem:    Build error in tiny version.
Solution:   Add #ifdef.
  • Loading branch information
brammool committed Dec 1, 2022
1 parent 733a69b commit c3f1881
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/term.c
Expand Up @@ -3726,7 +3726,9 @@ may_send_t_RK(void)
if (send_t_RK
&& !work_pending()
&& !ex_normal_busy
#ifdef FEAT_EVAL
&& !in_feedkeys
#endif
&& !exiting)
{
send_t_RK = 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 */
/**/
981,
/**/
980,
/**/
Expand Down

0 comments on commit c3f1881

Please sign in to comment.