diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-07 16:18:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-07 16:18:13 +0200 |
commit | 1ebff3dc93b6d022ccfe0613c1d1ee2d62fc7935 (patch) | |
tree | a58837c7b3b4e3f75f5ed28dc4cfadd125e6a3ae | |
parent | e330ef42f256e60017e5f8bf4be79a5308fe9e2f (diff) |
patch 8.1.0158: GUI: input() fails if CTRL-C was pressed beforev8.1.0158
Problem: GUI: input() fails if CTRL-C was pressed before. (Michael Naumann)
Solution: call vpeekc() to drop the CTRL-C from the input stream.
-rw-r--r-- | src/ex_docmd.c | 5 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index fec3a8e37a..e198a286af 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -9157,6 +9157,11 @@ do_sleep(long msec) parse_queued_messages(); #endif } + + // If CTRL-C was typed to interrupt the sleep, drop the CTRL-C from the + // input buffer, otherwise a following call to input() fails. + if (got_int) + (void)vpeekc(); } static void diff --git a/src/version.c b/src/version.c index 8d9a339f96..c8dde84e1e 100644 --- a/src/version.c +++ b/src/version.c @@ -790,6 +790,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 158, +/**/ 157, /**/ 156, |