aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/normal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r--src/nvim/normal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c
index a995535da2..a7c4c255b7 100644
--- a/src/nvim/normal.c
+++ b/src/nvim/normal.c
@@ -2933,8 +2933,9 @@ void check_visual_highlight(void)
static bool did_check = false;
if (full_screen) {
- if (!did_check && hl_attr(HLF_V) == 0)
+ if (!did_check && HL_ATTR(HLF_V) == 0) {
MSG(_("Warning: terminal cannot highlight"));
+ }
did_check = true;
}
}