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/os_win32.c | |
parent | 177778575148e265c0e32ec2abf2d2c615f5ead5 (diff) | |
download | vim-git-b9c31e71f5a4653a27e81c21226039bfa35b9131.tar.gz |
patch 8.0.0018v8.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/os_win32.c')
-rw-r--r-- | src/os_win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_win32.c b/src/os_win32.c index 0607bd2ef..5eacce635 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -6187,10 +6187,10 @@ mch_remove(char_u *name) /* - * check for an "interrupt signal": CTRL-break or CTRL-C + * Check for an "interrupt signal": CTRL-break or CTRL-C. */ void -mch_breakcheck(void) +mch_breakcheck(int force) { #ifndef FEAT_GUI_W32 /* never used */ if (g_fCtrlCPressed || g_fCBrkPressed) |