]> granicus.if.org Git - vim/commitdiff
patch 8.1.1754: build failure v8.1.1754
authorBram Moolenaar <Bram@vim.org>
Fri, 26 Jul 2019 20:20:03 +0000 (22:20 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 26 Jul 2019 20:20:03 +0000 (22:20 +0200)
Problem:    Build failure.
Solution:   Add missing change to window struct.

src/structs.h
src/version.c

index ac233629c3f1279a86e3fe6f6950c4760d7a5721..584117633010c816306256b9b8dbe6ac86068e85 100644 (file)
@@ -3017,7 +3017,10 @@ struct window_S
     int                w_popup_drag;       // allow moving the popup with the mouse
     popclose_T w_popup_close;      // allow closing the popup with the mouse
 
-    list_T     *w_popup_mask;      // list of lists for "mask"
+    list_T     *w_popup_mask;       // list of lists for "mask"
+    char_u     *w_popup_mask_cells; // cached mask cells
+    int                w_popup_mask_height; // height of w_popup_mask_cells
+    int                w_popup_mask_width;  // width of w_popup_mask_cells
 # if defined(FEAT_TIMERS)
     timer_T    *w_popup_timer;     // timer for closing popup window
 # endif
index 64f6a9eedad4011345de0595518ad987edb0eb16..1ae8910ccce1ba73a001150e0d0518640c6220cc 100644 (file)
@@ -777,6 +777,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1754,
 /**/
     1753,
 /**/