From d2cea96f6cd5352b270b5d9e257bb0670c934146 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 14 Jun 2019 23:14:45 +0200 Subject: patch 8.1.1532: build fails Problem: Build fails. Solution: Add missing changes. --- src/version.c | 2 ++ src/vim.h | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/version.c b/src/version.c index d252a1475..146f99680 100644 --- a/src/version.c +++ b/src/version.c @@ -777,6 +777,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1532, /**/ 1531, /**/ diff --git a/src/vim.h b/src/vim.h index 90208cdc7..a44fb5814 100644 --- 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. */ -- cgit v1.2.1