refactor: replace TRUE/FALSE macros with C99 true/false

This commit is contained in:
Dundar Göc
2021-07-23 15:25:35 +02:00
parent 192adfe99f
commit 11dcf15682
13 changed files with 31 additions and 38 deletions

View File

@@ -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) {