From 0b565e5da5c05890c2008b18bb5262638bf804f2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 14 May 2018 23:08:32 +0200 Subject: [PATCH] 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) --- src/popupmnu.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/popupmnu.c b/src/popupmnu.c index 0edfe5000..9bebceb89 100644 --- 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 index 67a6acfe7..af967d156 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1842, /**/ 1841, /**/ -- 2.40.0