diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-09-29 15:18:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-09-29 15:18:57 +0200 |
commit | b9c31e71f5a4653a27e81c21226039bfa35b9131 (patch) | |
tree | 13ab81b2945c99ef6b8f256dac36c0ea4427e394 /src/proto/os_unix.pro | |
parent | 177778575148e265c0e32ec2abf2d2c615f5ead5 (diff) | |
download | vim-b9c31e71f5a4653a27e81c21226039bfa35b9131.zip |
patch 8.0.0018
Problem: When using ":sleep" channel input is not handled.
Solution: When there is a channel check for input also when not in raw mode.
Check every 100 msec.
Diffstat (limited to 'src/proto/os_unix.pro')
-rw-r--r-- | src/proto/os_unix.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/os_unix.pro b/src/proto/os_unix.pro index 1d025e828..b1e9b8e29 100644 --- a/src/proto/os_unix.pro +++ b/src/proto/os_unix.pro @@ -61,7 +61,7 @@ void mch_start_job(char **argv, job_T *job, jobopt_T *options); char *mch_job_status(job_T *job); int mch_stop_job(job_T *job, char_u *how); void mch_clear_job(job_T *job); -void mch_breakcheck(void); +void mch_breakcheck(int force); int mch_expandpath(garray_T *gap, char_u *path, int flags); int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, int flags); int mch_has_exp_wildcard(char_u *p); |