summaryrefslogtreecommitdiffstats
path: root/src/proto/popupwin.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-13 22:35:19 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-13 22:35:19 +0100
commitafe45b68a67769a61b44a96b0ffe3bfce4e9316e (patch)
treea329007970730728fae316fe023841ad980c8ebc /src/proto/popupwin.pro
parent36e7a823c66cfefb553c723e6792bcc6a1573b03 (diff)
patch 8.1.2300: redraw breaks going through list of popup windowsv8.1.2300
Problem: Redraw breaks going through list of popup windows. Solution: Use different flags for popup_reset_handled(). (closes #5216)
Diffstat (limited to 'src/proto/popupwin.pro')
-rw-r--r--src/proto/popupwin.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro
index bc4315a812..6e9b162a40 100644
--- a/src/proto/popupwin.pro
+++ b/src/proto/popupwin.pro
@@ -40,8 +40,8 @@ void f_popup_getpos(typval_T *argvars, typval_T *rettv);
void f_popup_locate(typval_T *argvars, typval_T *rettv);
void f_popup_getoptions(typval_T *argvars, typval_T *rettv);
int error_if_popup_window(void);
-void popup_reset_handled(void);
-win_T *find_next_popup(int lowest);
+void popup_reset_handled(int handled_flag);
+win_T *find_next_popup(int lowest, int handled_flag);
int popup_do_filter(int c);
int popup_no_mapping(void);
void popup_check_cursor_pos(void);