# HG changeset patch # User Bram Moolenaar # Date 1560546905 -7200 # Node ID 58bf4faa5c0592110a9b1f6377338c3eb34b92e4 # Parent 24519df8777a84e1e51b6d9caccc6496dcdb1436 patch 8.1.1532: build fails commit https://github.com/vim/vim/commit/d2cea96f6cd5352b270b5d9e257bb0670c934146 Author: Bram Moolenaar Date: Fri Jun 14 23:14:45 2019 +0200 patch 8.1.1532: build fails Problem: Build fails. Solution: Add missing changes. 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 */ /**/ + 1532, +/**/ 1531, /**/ 1530, diff --git a/src/vim.h b/src/vim.h --- 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. */