# HG changeset patch # User Bram Moolenaar # Date 1404907249 -7200 # Node ID 4eedfc4911a1db9c4874689f6c652be0094838f2 # Parent 10e73b8fa682b4a098fbc4e3f35e2506b9657749 updated for version 7.4.357 Problem: After completion some characters are not redrawn. Solution: Clear the command line unconditionally. (Jacob Niehus) diff --git a/src/edit.c b/src/edit.c --- a/src/edit.c +++ b/src/edit.c @@ -3854,8 +3854,7 @@ ins_compl_prep(c) ins_compl_free(); compl_started = FALSE; compl_matches = 0; - if (!shortmess(SHM_COMPLETIONMENU)) - msg_clr_cmdline(); /* necessary for "noshowmode" */ + msg_clr_cmdline(); /* necessary for "noshowmode" */ ctrl_x_mode = 0; compl_enter_selects = FALSE; if (edit_submode != NULL) diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 357, +/**/ 356, /**/ 355,