]> granicus.if.org Git - vim/commitdiff
patch 8.1.1532: build fails v8.1.1532
authorBram Moolenaar <Bram@vim.org>
Fri, 14 Jun 2019 21:14:45 +0000 (23:14 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 14 Jun 2019 21:14:45 +0000 (23:14 +0200)
Problem:    Build fails.
Solution:   Add missing changes.

src/version.c
src/vim.h

index d252a1475e62f51e131762b62d733de668d3ec52..146f99680669c685800c28561bb6d14e58ded9c4 100644 (file)
@@ -777,6 +777,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1532,
 /**/
     1531,
 /**/
index 90208cdc7eb8cc78ffd0b1c918c390f95ba1064e..a44fb58142f95a409e836df6882ad22d6a6b4c11 100644 (file)
--- a/src/vim.h
+++ b/src/vim.h
@@ -2006,7 +2006,7 @@ typedef int sock_T;
 # endif
 
 /* Info about selected text */
-typedef struct VimClipboard
+typedef struct
 {
     int                available;      /* Is clipboard available? */
     int                owned;          /* Flag: do we own the selection? */
@@ -2037,9 +2037,9 @@ typedef struct VimClipboard
     int_u      format;         /* Vim's own special clipboard format */
     int_u      format_raw;     /* Vim's raw text clipboard format */
 # endif
-} VimClipboard;
+} Clipboard_T;
 #else
-typedef int VimClipboard;      /* This is required for the prototypes. */
+typedef int Clipboard_T;       // This is required for the prototypes.
 #endif
 
 /* Use 64-bit stat structure if available. */