diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-14 14:17:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-14 14:17:45 +0100 |
commit | a4d158b3c839e96ed98ff87c7b7124ff4518c4ff (patch) | |
tree | 42d3a6b65d4ae53a6e078c8f24a5ee9960e3ad24 /src/popupmenu.c | |
parent | 28c9f895716cfa8f1220bc41b72a534c0e10cabe (diff) | |
download | vim-git-a4d158b3c839e96ed98ff87c7b7124ff4518c4ff.tar.gz |
patch 9.0.0206: redraw flags are not named specificallyv9.0.0206
Problem: Redraw flags are not named specifically.
Solution: Prefix "UPD_" to the flags, for UPDate_screen().
Diffstat (limited to 'src/popupmenu.c')
-rw-r--r-- | src/popupmenu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/popupmenu.c b/src/popupmenu.c index 37c4a6d25..fd496c857 100644 --- a/src/popupmenu.c +++ b/src/popupmenu.c @@ -943,7 +943,7 @@ pum_set_selected(int n, int repeat UNUSED) { pum_position_info_popup(curwin); if (win_valid(curwin_save)) - redraw_win_later(curwin_save, SOME_VALID); + redraw_win_later(curwin_save, UPD_SOME_VALID); } # endif if ((curwin != curwin_save && win_valid(curwin_save)) @@ -963,7 +963,7 @@ pum_set_selected(int n, int repeat UNUSED) // Return cursor to where we were validate_cursor(); - redraw_later(SOME_VALID); + redraw_later(UPD_SOME_VALID); // When the preview window was resized we need to // update the view on the buffer. Only go back to @@ -1048,7 +1048,7 @@ pum_set_selected(int n, int repeat UNUSED) pum_undisplay(void) { pum_array = NULL; - redraw_all_later(NOT_VALID); + redraw_all_later(UPD_NOT_VALID); redraw_tabline = TRUE; status_redraw_all(); #if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX) |