changeset 11987:f2cf5698a93f v8.0.0874

patch 8.0.0874: can't build with terminal feature commit https://github.com/vim/vim/commit/22aa23fd8cf74f535dba5eb8f6d02107ba2c512c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 5 21:13:36 2017 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Sat, 05 Aug 2017 21:15:04 +0200
parents ca2801834b85
children d12a5403adcb
files src/normal.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    874,
+/**/
     873,
 /**/
     872,