diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-09-10 00:32:43 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-09-10 00:32:43 -0400 |
commit | 6d50f4d0c9098497686161c08121b21d492a469d (patch) | |
tree | 539673000d461fa685920f341cd8d0f219f1b378 /src/nvim/mouse.c | |
parent | b50cc42eb7afda714f3678a627ff6c55d342bc30 (diff) | |
parent | 23acaf8940ca55d6fb4f180c2b78c2f90bfafa8a (diff) | |
download | rneovim-6d50f4d0c9098497686161c08121b21d492a469d.tar.gz rneovim-6d50f4d0c9098497686161c08121b21d492a469d.tar.bz2 rneovim-6d50f4d0c9098497686161c08121b21d492a469d.zip |
Merge #3297 'move.c refactor'
Diffstat (limited to 'src/nvim/mouse.c')
-rw-r--r-- | src/nvim/mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mouse.c b/src/nvim/mouse.c index 5d1c5b35db..3ae1a6a890 100644 --- a/src/nvim/mouse.c +++ b/src/nvim/mouse.c @@ -232,7 +232,7 @@ retnomove: if (!first && count > -row) break; first = false; - hasFolding(curwin->w_topline, &curwin->w_topline, NULL); + (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL); if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)) { ++curwin->w_topfill; } else { |