aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-11-27 16:08:44 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-11-27 16:08:44 -0300
commitdca8853f0031ab7ac960037d3b848107355d7056 (patch)
tree90cecee10a75f8035fd0df02629d999853318450 /src/nvim/syntax.c
parentf6c89ec70409badb7ca477de47dd1f8dbf3de376 (diff)
parentbf6bb27e79f53646309ba075655465919bc2e60c (diff)
downloadrneovim-dca8853f0031ab7ac960037d3b848107355d7056.tar.gz
rneovim-dca8853f0031ab7ac960037d3b848107355d7056.tar.bz2
rneovim-dca8853f0031ab7ac960037d3b848107355d7056.zip
Merge PR #1565 'Cleanup ui module'
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r--src/nvim/syntax.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index 6c5c0f37b1..69d6479cf3 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -44,8 +44,8 @@
#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"
/*
* Structure that stores information about a highlight group.
@@ -7606,7 +7606,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_delay(cnt == 99 ? 40L : (long)cnt * 50L, false);
+ os_delay(cnt == 99 ? 40L : (long)cnt * 50L, false);
}