Skip to content

Commit 22aa23f

Browse files
committed
patch 8.0.0874: can't build with terminal feature
Problem: Can't build with terminal feature. Solution: Include change to term_use_loop(). (Dominique Pelle)
1 parent aaa8a35 commit 22aa23f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/normal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4639,7 +4639,7 @@ nv_mousescroll(cmdarg_T *cap)
46394639
if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN)
46404640
{
46414641
# ifdef FEAT_TERMINAL
4642-
if (term_use_loop())
4642+
if (term_use_loop(FALSE))
46434643
send_keys_to_term(curbuf->b_term, cap->cmdchar, TRUE);
46444644
else
46454645
# endif

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+
874,
772774
/**/
773775
873,
774776
/**/

0 commit comments

Comments
 (0)