From: Bram Moolenaar Date: Wed, 23 Jul 2014 11:50:46 +0000 (+0200) Subject: updated for version 7.4.376 X-Git-Tag: v7.4.376 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=674fffe855dd7145e1216246d76b13464b7057f7;p=vim updated for version 7.4.376 Problem: Popup menu flickers too much. Solution: Remove the forced redraw. (Hirohito Higashi) --- diff --git a/src/edit.c b/src/edit.c index f0d630a05..69679bcdd 100644 --- a/src/edit.c +++ b/src/edit.c @@ -4593,9 +4593,9 @@ ins_compl_delete() i = compl_col + (compl_cont_status & CONT_ADDING ? compl_length : 0); backspace_until_column(i); - /* Not sure what is still valid, better redraw everything. */ + /* TODO: is this sufficient for redrawing? Redrawing everything causes + * flicker, thus we can't do that. */ changed_cline_bef_curs(); - redraw_curbuf_later(NOT_VALID); } /* Insert the new text being completed. */ diff --git a/src/version.c b/src/version.c index c93f108f4..47248ee4b 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 376, /**/ 375, /**/