diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-07-23 15:25:35 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-07-25 21:51:50 +0200 |
commit | 11dcf1568251f7e54f5ea28310e1d603de089eca (patch) | |
tree | defdc5456099598f76fca4e7988d0e33a495928f /src/nvim/mouse.c | |
parent | 192adfe99f33778a85e11fbfdceb37f347a3d235 (diff) | |
download | rneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.tar.gz rneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.tar.bz2 rneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.zip |
refactor: replace TRUE/FALSE macros with C99 true/false
Diffstat (limited to 'src/nvim/mouse.c')
-rw-r--r-- | src/nvim/mouse.c | 5 |
1 files changed, 2 insertions, 3 deletions
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) { |