diff options
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index c94e6e437b..3fc004036e 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -44,7 +44,6 @@ #include "nvim/screen.h" #include "nvim/strings.h" #include "nvim/syntax_defs.h" -#include "nvim/term.h" #include "nvim/ui.h" #include "nvim/os/os.h" #include "nvim/os/time.h" @@ -7394,7 +7393,7 @@ static void highlight_list_two(int cnt, int attr) { msg_puts_attr((char_u *)&("N \bI \b! \b"[cnt / 11]), attr); msg_clr_eos(); - out_flush(); + ui_flush(); os_delay(cnt == 99 ? 40L : (long)cnt * 50L, false); } |