# HG changeset patch # User Bram Moolenaar # Date 1562517904 -7200 # Node ID a7183462339f428c90b5b1f4bb0fcf9702a2444a # Parent b28117c1e7b73efc7a67c957d1a0d111da31166f patch 8.1.1646: build failure commit https://github.com/vim/vim/commit/56a63120992cc3e1f50d654a3f8aeace40bf12ef Author: Bram Moolenaar Date: Sun Jul 7 18:38:34 2019 +0200 patch 8.1.1646: build failure Problem: build failure Solution: Add changes to structure. diff --git a/src/structs.h b/src/structs.h --- 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 --- 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,