We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3dc062 commit f45d747Copy full SHA for f45d747
2 files changed
src/ex_docmd.c
@@ -9272,7 +9272,7 @@ do_sleep(long msec)
9272
long wait_now;
9273
9274
cursor_on();
9275
- out_flush();
+ out_flush_cursor(FALSE, FALSE);
9276
for (done = 0; !got_int && done < msec; done += wait_now)
9277
{
9278
wait_now = msec - done > 1000L ? 1000L : msec - done;
src/version.c
@@ -794,6 +794,8 @@ static char *(features[]) =
794
795
static int included_patches[] =
796
{ /* Add new patch number below this line */
797
+/**/
798
+ 442,
799
/**/
800
441,
801
0 commit comments