From 0981c8729e09551f2e8e6c159bc29f2c1d04019c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 23 Aug 2020 14:28:37 +0200 Subject: patch 8.2.1513: cannot interrupt shell used for filename expansion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: Cannot interrupt shell used for filename expansion. (Dominique Pellé) Solution: Do set tmode in mch_delay(). (closes #6770) --- src/channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/channel.c') 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; } -- cgit v1.2.1