summaryrefslogtreecommitdiffstats
path: root/src/move.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-09 20:51:04 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-09 20:51:04 +0100
commitae12f4bad306a1a3a2d54ff6ed76df9b11d19469 (patch)
tree7ebc794adeeb121202d382ed689c149af54022ee /src/move.c
parent663bc89bbb8158bd0888f7d7228b2dbc6bbd4802 (diff)
patch 8.1.0708: third argument for redrawWinline() is always FALSEv8.1.0708
Problem: Third argument for redrawWinline() is always FALSE. Solution: Drop the argument. (neovim #9479)
Diffstat (limited to 'src/move.c')
-rw-r--r--src/move.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/move.c b/src/move.c
index a94a1ab9d3..119941ff46 100644
--- a/src/move.c
+++ b/src/move.c
@@ -153,8 +153,8 @@ redraw_for_cursorline(win_T *wp)
// "w_last_cursorline" may be outdated, worst case we redraw
// too much. This is optimized for moving the cursor around in
// the current window.
- redrawWinline(wp, wp->w_last_cursorline, FALSE);
- redrawWinline(wp, wp->w_cursor.lnum, FALSE);
+ redrawWinline(wp, wp->w_last_cursorline);
+ redrawWinline(wp, wp->w_cursor.lnum);
redraw_win_later(wp, VALID);
}
else