Mercurial > vim
diff src/proto/os_unix.pro @ 21927:88070e222e82 v8.2.1513
patch 8.2.1513: cannot interrupt shell used for filename expansion
Commit: https://github.com/vim/vim/commit/0981c8729e09551f2e8e6c159bc29f2c1d04019c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Aug 23 14:28:37 2020 +0200
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)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 23 Aug 2020 14:30:05 +0200 |
parents | d4b2a8675b78 |
children | f1799ba16729 |
line wrap: on
line diff
--- a/src/proto/os_unix.pro +++ b/src/proto/os_unix.pro @@ -5,7 +5,7 @@ int mch_inchar(char_u *buf, int maxlen, int mch_char_avail(void); int mch_check_messages(void); long_u mch_total_mem(int special); -void mch_delay(long msec, int ignoreinput); +void mch_delay(long msec, int flags); int mch_stackcheck(char *p); void mch_suspend(void); void mch_init(void);