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/mouse.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/nvim/mouse.c') diff --git a/src/nvim/mouse.c b/src/nvim/mouse.c index 4c0339e5f4..f1ad0ed105 100644 --- a/src/nvim/mouse.c +++ b/src/nvim/mouse.c @@ -570,9 +570,8 @@ static linenr_T find_longest_lnum(void) return ret; } -/// -/// Do a horizontal scroll. Return TRUE if the cursor moved, FALSE otherwise. -/// +/// Do a horizontal scroll. +/// @return true if the cursor moved, false otherwise. bool mouse_scroll_horiz(int dir) { if (curwin->w_p_wrap) { -- cgit