From 8638578bf3513dac4bdc1a07a2bc8ee3846d716e Mon Sep 17 00:00:00 2001 From: oni-link Date: Thu, 22 May 2014 12:08:47 +0200 Subject: vim-patch:7.4.288 #751 Problem: When 'spellfile' is set the screen is not redrawn. Solution: Redraw when updating the spelling info. (Christian Brabandt) https://code.google.com/p/vim/source/detail?r=7965cb6a435ae1ea331c7c2f8740d3d4c3625f3b --- src/nvim/spell.c | 1 + src/nvim/version.c | 2 ++ 2 files changed, 3 insertions(+) (limited to 'src') diff --git a/src/nvim/spell.c b/src/nvim/spell.c index a3e104b160..924414c7da 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -3967,6 +3967,7 @@ char_u *did_set_spelllang(win_T *wp) theend: free(spl_copy); recursive = FALSE; + redraw_win_later(wp, NOT_VALID); return ret_msg; } diff --git a/src/nvim/version.c b/src/nvim/version.c index ffe79a1528..49fe3ea909 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -202,6 +202,8 @@ static char *(features[]) = { static int included_patches[] = { // Add new patch number below this line + 288, + //287, 286, 285, 284, -- cgit