commit | 0981c8729e09551f2e8e6c159bc29f2c1d04019c | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Aug 23 14:28:37 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Aug 23 14:28:37 2020 +0200 |
tree | fb59625d83fd366041f504191b5dbfadea1d81c9 | |
parent | 69e44552c567ff25b363ba0790ad3d43fa0397a7 [diff] [blame] |
patch 8.2.1513: cannot interrupt shell used for filename expansion Problem: Cannot interrupt shell used for filename expansion. (Dominique Pellé) Solution: Do set tmode in mch_delay(). (closes #6770)
diff --git a/src/ui.c b/src/ui.c index e473f85..fc24a01 100644 --- a/src/ui.c +++ b/src/ui.c
@@ -539,7 +539,7 @@ gui_wait_for_chars(msec, typebuf.tb_change_cnt); else #endif - mch_delay(msec, ignoreinput); + mch_delay(msec, ignoreinput ? MCH_DELAY_IGNOREINPUT : 0); } /*