From f96dec4a2c9d260cdbbad8b00305bff8f4f1fbac Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 17 Jul 2019 05:08:44 -0400 Subject: vim-patch:8.1.0715: superfluous redraw_win_later() #10523 Problem: Superfluous call to redraw_win_later(). Solution: Remove the call. https://github.com/vim/vim/commit/6f7e555f7440df148350468ad8bc6d559d676d7c --- src/nvim/move.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nvim/move.c b/src/nvim/move.c index e076543614..05db39b981 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -119,7 +119,6 @@ static void redraw_for_cursorline(win_T *wp) // the current window. redrawWinline(wp, wp->w_last_cursorline); redrawWinline(wp, wp->w_cursor.lnum); - redraw_win_later(wp, VALID); } else { redraw_win_later(wp, SOME_VALID); } -- cgit