summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-05 21:13:36 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-05 21:13:36 +0200
commit22aa23fd8cf74f535dba5eb8f6d02107ba2c512c (patch)
tree0f36c4ad64ee40d4f8417954a5d34264b463fe73
parentaaa8a35fbd38d5e6cc57ae60a8477e787d695a20 (diff)
patch 8.0.0874: can't build with terminal featurev8.0.0874
Problem: Can't build with terminal feature. Solution: Include change to term_use_loop(). (Dominique Pelle)
-rw-r--r--src/normal.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index 25ab2d345c..88f604dd86 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 54acc59d33..bc72c831d1 100644
--- 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,