summaryrefslogtreecommitdiffstats
path: root/src/proto/popupwin.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-01 23:04:24 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-01 23:04:24 +0100
commit3c01c4a02897163996639f6f2604c68eab2bd18b (patch)
tree165e15670745d97aefa14938a2ea695acfa7327c /src/proto/popupwin.pro
parent284d1c24e250494cf886b3548f1ecae5ad262da9 (diff)
patch 8.2.0194: some commands can cause problems in terminal popupv8.2.0194
Problem: Some commands can cause problems in terminal popup. Solution: Disallow more commands.
Diffstat (limited to 'src/proto/popupwin.pro')
-rw-r--r--src/proto/popupwin.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/popupwin.pro b/src/proto/popupwin.pro
index bfbd883cad..7608f32a26 100644
--- a/src/proto/popupwin.pro
+++ b/src/proto/popupwin.pro
@@ -41,7 +41,7 @@ void f_popup_setoptions(typval_T *argvars, typval_T *rettv);
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);
+int error_if_popup_window(int also_with_term);
int error_if_term_popup_window(void);
void popup_reset_handled(int handled_flag);
win_T *find_next_popup(int lowest, int handled_flag);