summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-07 18:38:34 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-07 18:38:34 +0200
commit56a63120992cc3e1f50d654a3f8aeace40bf12ef (patch)
treea90e82bd976f2989fd988f1ef80bf489ac868407
parentb3d17a20d243f65bcfe23de08b7afd948c5132c2 (diff)
patch 8.1.1646: build failurev8.1.1646
Problem: build failure Solution: Add changes to structure.
-rw-r--r--src/structs.h3
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 4c4ce7df0a..57a09fa985 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -2941,6 +2941,9 @@ struct window_S
linenr_T w_popup_lnum; // close popup if cursor not on this line
colnr_T w_popup_mincol; // close popup if cursor before this col
colnr_T w_popup_maxcol; // close popup if cursor after this col
+ int w_popup_mouse_row; // close popup if mouse moves away
+ int w_popup_mouse_mincol; // close popup if mouse moves away
+ int w_popup_mouse_maxcol; // close popup if mouse moves away
int w_popup_drag; // allow moving the popup with the mouse
popclose_T w_popup_close; // allow closing the popup with the mouse
diff --git a/src/version.c b/src/version.c
index 61651330c0..52bce3b683 100644
--- a/src/version.c
+++ b/src/version.c
@@ -778,6 +778,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1646,
+/**/
1645,
/**/
1644,