changeset 17065:58bf4faa5c05 v8.1.1532

patch 8.1.1532: build fails commit https://github.com/vim/vim/commit/d2cea96f6cd5352b270b5d9e257bb0670c934146 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 14 23:14:45 2019 +0200 patch 8.1.1532: build fails Problem: Build fails. Solution: Add missing changes.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Jun 2019 23:15:05 +0200
parents 24519df8777a
children fe6a30921a45
files src/version.c src/vim.h
diffstat 2 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 */
 /**/
+    1532,
+/**/
     1531,
 /**/
     1530,
--- 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. */