# HG changeset patch # User Bram Moolenaar # Date 1547204410 -3600 # Node ID d7432dcb6b7cb0f6e03fd0286531740a6f933da7 # Parent aeee555c8b0d73253f87671f0ef01de4fc5bceaa patch 8.1.0715: superfluous call to redraw_win_later() commit https://github.com/vim/vim/commit/6f7e555f7440df148350468ad8bc6d559d676d7c Author: Bram Moolenaar Date: Fri Jan 11 11:55:16 2019 +0100 patch 8.1.0715: superfluous call to redraw_win_later() Problem: Superfluous call to redraw_win_later(). Solution: Remove the call. diff --git a/src/move.c b/src/move.c --- a/src/move.c +++ b/src/move.c @@ -137,9 +137,9 @@ redraw_for_cursorline(win_T *wp) #endif ) && (wp->w_valid & VALID_CROW) == 0 -# ifdef FEAT_INS_EXPAND +#ifdef FEAT_INS_EXPAND && !pum_visible() -# endif +#endif ) { if (wp->w_p_rnu) @@ -155,7 +155,6 @@ 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); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -800,6 +800,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 715, +/**/ 714, /**/ 713,