summaryrefslogtreecommitdiff
path: root/src/channel.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-23 14:28:37 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-23 14:28:37 +0200
commit0981c8729e09551f2e8e6c159bc29f2c1d04019c (patch)
treefb59625d83fd366041f504191b5dbfadea1d81c9 /src/channel.c
parent69e44552c567ff25b363ba0790ad3d43fa0397a7 (diff)
downloadvim-git-0981c8729e09551f2e8e6c159bc29f2c1d04019c.tar.gz
patch 8.2.1513: cannot interrupt shell used for filename expansionv8.2.1513
Problem: Cannot interrupt shell used for filename expansion. (Dominique Pellé) Solution: Do set tmode in mch_delay(). (closes #6770)
Diffstat (limited to 'src/channel.c')
-rw-r--r--src/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channel.c b/src/channel.c
index 3e7ec9659..0b41133c2 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -904,7 +904,7 @@ channel_connect(
*waittime -= elapsed_msec;
if (waitnow > 0)
{
- mch_delay((long)waitnow, TRUE);
+ mch_delay((long)waitnow, MCH_DELAY_IGNOREINPUT);
ui_breakcheck();
*waittime -= waitnow;
}