summaryrefslogtreecommitdiffstats
path: root/src/os_amiga.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-29 15:18:57 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-29 15:18:57 +0200
commitb9c31e71f5a4653a27e81c21226039bfa35b9131 (patch)
tree13ab81b2945c99ef6b8f256dac36c0ea4427e394 /src/os_amiga.c
parent177778575148e265c0e32ec2abf2d2c615f5ead5 (diff)
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_amiga.c')
-rw-r--r--src/os_amiga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_amiga.c b/src/os_amiga.c
index 4478093df4..9266380d6d 100644
--- a/src/os_amiga.c
+++ b/src/os_amiga.c
@@ -1381,7 +1381,7 @@ mch_call_shell(
* trouble with lattice-c programs.
*/
void
-mch_breakcheck(void)
+mch_breakcheck(int force)
{
if (SetSignal(0L, (long)(SIGBREAKF_CTRL_C|SIGBREAKF_CTRL_D|SIGBREAKF_CTRL_E|SIGBREAKF_CTRL_F)) & SIGBREAKF_CTRL_C)
got_int = TRUE;