From: Bram Moolenaar Date: Sat, 5 Aug 2017 19:13:36 +0000 (+0200) Subject: patch 8.0.0874: can't build with terminal feature X-Git-Tag: v8.0.0874 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=22aa23fd8cf74f535dba5eb8f6d02107ba2c512c;p=vim 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) --- diff --git a/src/normal.c b/src/normal.c index 25ab2d345..88f604dd8 100644 --- a/src/normal.c +++ b/src/normal.c @@ -4639,7 +4639,7 @@ nv_mousescroll(cmdarg_T *cap) if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN) { # ifdef FEAT_TERMINAL - if (term_use_loop()) + if (term_use_loop(FALSE)) send_keys_to_term(curbuf->b_term, cap->cmdchar, TRUE); else # endif diff --git a/src/version.c b/src/version.c index 54acc59d3..bc72c831d 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 874, /**/ 873, /**/