summaryrefslogtreecommitdiffstats
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-07 14:21:47 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-07 14:21:47 +0200
commit905dd905debfde403b2a18178ccc1f8e118f4f2b (patch)
tree09a0e040e2c2aeafd22d26c15294ea876f0006ba /src/evalfunc.c
parentd85c396d5149a87677e30742f92b2ecfe28af8a6 (diff)
patch 8.1.1136: decoding of mouse click escape sequence is not testedv8.1.1136
Problem: Decoding of mouse click escape sequence is not tested. Solution: Add a test for xterm and SGR using low-level input. Make low-level input execution with feedkeys() work.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index b79284c07b..7f8330f999 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -3792,7 +3792,7 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
if (!dangerous)
++ex_normal_busy;
- exec_normal(TRUE, FALSE, TRUE);
+ exec_normal(TRUE, lowlevel, TRUE);
if (!dangerous)
--ex_normal_busy;