changeset 6075:c3bb76e5b235 v7.4.376

updated for version 7.4.376 Problem: Popup menu flickers too much. Solution: Remove the forced redraw. (Hirohito Higashi)
author Bram Moolenaar <bram@vim.org>
date Wed, 23 Jul 2014 13:50:46 +0200
parents 4ac9700e9cff
children 827611a8802f
files src/edit.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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. */
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    376,
+/**/
     375,
 /**/
     374,