summaryrefslogtreecommitdiff
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-09-30 18:22:26 +0200
committerBram Moolenaar <Bram@vim.org>2018-09-30 18:22:26 +0200
commitf45d747ebf920940b041f5c75c2bfdffb6b670ae (patch)
tree6a6f590502f34925c0c8962e844882c49839c36a /src/ex_docmd.c
parentd3dc062160b52f2a01900a8b8badb531fb8b3f16 (diff)
downloadvim-git-f45d747ebf920940b041f5c75c2bfdffb6b670ae.tar.gz
patch 8.1.0442: GUI: cursor not drawn after ":redraw | sleep"v8.1.0442
Problem: GUI: Cursor not drawn after ":redraw | sleep". Solution: Flush the output. (closes #3496)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 82904eeaf..25d70c4f8 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -9272,7 +9272,7 @@ do_sleep(long msec)
long wait_now;
cursor_on();
- out_flush();
+ out_flush_cursor(FALSE, FALSE);
for (done = 0; !got_int && done < msec; done += wait_now)
{
wait_now = msec - done > 1000L ? 1000L : msec - done;