mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.1.1532: build fails
Problem: Build fails. Solution: Add missing changes.
This commit is contained in:
@@ -777,6 +777,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1532,
|
||||||
/**/
|
/**/
|
||||||
1531,
|
1531,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -2006,7 +2006,7 @@ typedef int sock_T;
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
/* Info about selected text */
|
/* Info about selected text */
|
||||||
typedef struct VimClipboard
|
typedef struct
|
||||||
{
|
{
|
||||||
int available; /* Is clipboard available? */
|
int available; /* Is clipboard available? */
|
||||||
int owned; /* Flag: do we own the selection? */
|
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; /* Vim's own special clipboard format */
|
||||||
int_u format_raw; /* Vim's raw text clipboard format */
|
int_u format_raw; /* Vim's raw text clipboard format */
|
||||||
# endif
|
# endif
|
||||||
} VimClipboard;
|
} Clipboard_T;
|
||||||
#else
|
#else
|
||||||
typedef int VimClipboard; /* This is required for the prototypes. */
|
typedef int Clipboard_T; // This is required for the prototypes.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Use 64-bit stat structure if available. */
|
/* Use 64-bit stat structure if available. */
|
||||||
|
Reference in New Issue
Block a user