diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-02-03 16:42:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 16:42:44 +0100 |
commit | 01b4efe9d939d9eed93c55829d8c35ec22113328 (patch) | |
tree | 2725d0267dae469fb1f08636011264e295c57750 /src/nvim/syntax.c | |
parent | 79a0ea2bec7c4a1c82990c07c87098b87bc2a1da (diff) | |
download | rneovim-01b4efe9d939d9eed93c55829d8c35ec22113328.tar.gz rneovim-01b4efe9d939d9eed93c55829d8c35ec22113328.tar.bz2 rneovim-01b4efe9d939d9eed93c55829d8c35ec22113328.zip |
rename ui_is_external to ui_has (#9576)
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 81c78ca6a9..b6b7dfff11 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -6893,7 +6893,7 @@ void do_highlight(const char *line, const bool forceit, const bool init) // "fg", which have been changed now. highlight_attr_set_all(); - if (!ui_is_external(kUILinegrid) && starting == 0) { + if (!ui_has(kUILinegrid) && starting == 0) { // Older UIs assume that we clear the screen after normal group is // changed ui_refresh(); |