From: Bram Moolenaar Date: Sun, 30 Sep 2018 16:22:26 +0000 (+0200) Subject: patch 8.1.0442: GUI: cursor not drawn after ":redraw | sleep" X-Git-Tag: v8.1.0442 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f45d747ebf920940b041f5c75c2bfdffb6b670ae;p=vim patch 8.1.0442: GUI: cursor not drawn after ":redraw | sleep" Problem: GUI: Cursor not drawn after ":redraw | sleep". Solution: Flush the output. (closes #3496) --- 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; diff --git a/src/version.c b/src/version.c index c81491d2c..f3a72ec77 100644 --- a/src/version.c +++ b/src/version.c @@ -794,6 +794,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 442, /**/ 441, /**/