summaryrefslogtreecommitdiff
path: root/src/normal.c
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 /src/normal.c
parentaaa8a35fbd38d5e6cc57ae60a8477e787d695a20 (diff)
downloadvim-git-22aa23fd8cf74f535dba5eb8f6d02107ba2c512c.tar.gz
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)
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c2
1 files changed, 1 insertions, 1 deletions
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