comparison src/proto/os_win32.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 ecaceb5c5644
children c4298ed56ffa
comparison
equal deleted inserted replaced
21926:ec5898bccf08 21927:88070e222e82
51 job_T *mch_detect_ended_job(job_T *job_list); 51 job_T *mch_detect_ended_job(job_T *job_list);
52 int mch_signal_job(job_T *job, char_u *how); 52 int mch_signal_job(job_T *job, char_u *how);
53 void mch_clear_job(job_T *job); 53 void mch_clear_job(job_T *job);
54 void mch_set_normal_colors(void); 54 void mch_set_normal_colors(void);
55 void mch_write(char_u *s, int len); 55 void mch_write(char_u *s, int len);
56 void mch_delay(long msec, int ignoreinput); 56 void mch_delay(long msec, int flags);
57 int mch_remove(char_u *name); 57 int mch_remove(char_u *name);
58 void mch_breakcheck(int force); 58 void mch_breakcheck(int force);
59 long_u mch_total_mem(int special); 59 long_u mch_total_mem(int special);
60 int mch_wrename(WCHAR *wold, WCHAR *wnew); 60 int mch_wrename(WCHAR *wold, WCHAR *wnew);
61 int mch_rename(const char *pszOldFile, const char *pszNewFile); 61 int mch_rename(const char *pszOldFile, const char *pszNewFile);