From 11dcf1568251f7e54f5ea28310e1d603de089eca Mon Sep 17 00:00:00 2001 From: Dundar Göc Date: Fri, 23 Jul 2021 15:25:35 +0200 Subject: refactor: replace TRUE/FALSE macros with C99 true/false --- src/nvim/highlight.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/highlight.c') diff --git a/src/nvim/highlight.c b/src/nvim/highlight.c index 79e474fa2e..29ee7aae56 100644 --- a/src/nvim/highlight.c +++ b/src/nvim/highlight.c @@ -46,7 +46,7 @@ void highlight_init(void) .id1 = 0, .id2 = 0 })); } -/// @return TRUE if hl table was reset +/// @return true if hl table was reset bool highlight_use_hlstate(void) { if (hlstate_active) { -- cgit