diff options
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index c4b2977435..16ace76e0a 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -1834,7 +1834,7 @@ void changed(void) * and don't let the emsg() set msg_scroll. */ if (need_wait_return && emsg_silent == 0) { out_flush(); - ui_delay(2000L, TRUE); + ui_delay(2000L, true); wait_return(TRUE); msg_scroll = save_msg_scroll; } @@ -2257,7 +2257,7 @@ change_warning ( (void)msg_end(); if (msg_silent == 0 && !silent_mode) { out_flush(); - ui_delay(1000L, TRUE); /* give the user time to think about it */ + ui_delay(1000L, true); /* give the user time to think about it */ } curbuf->b_did_warn = TRUE; redraw_cmdline = FALSE; /* don't redraw and erase the message */ |