# HG changeset patch # User Christian Brabandt # Date 1526332505 -7200 # Node ID ddf02a93796fc7d8ab4db83569d831a7b3f9404f # Parent 28d604f35317cf1fd8fc1f8b1050229408614e11 patch 8.0.1842: popup menu inside terminal window isn't cleared commit https://github.com/vim/vim/commit/0b565e5da5c05890c2008b18bb5262638bf804f2 Author: Bram Moolenaar Date: Mon May 14 23:08:32 2018 +0200 patch 8.0.1842: popup menu inside terminal window isn't cleared Problem: Popup menu inside terminal window isn't cleared. Solution: Use NOT_VALID in pum_undisplay(). (suggested by Christian Brabandt, closes #2908) diff --git a/src/popupmnu.c b/src/popupmnu.c --- a/src/popupmnu.c +++ b/src/popupmnu.c @@ -797,7 +797,7 @@ pum_set_selected(int n, int repeat) pum_undisplay(void) { pum_array = NULL; - redraw_all_later(SOME_VALID); + redraw_all_later(NOT_VALID); redraw_tabline = TRUE; status_redraw_all(); } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1842, +/**/ 1841, /**/ 1840,