# HG changeset patch # User Christian Brabandt # Date 1470062706 -7200 # Node ID 02ba9b2f80e808ebf17cb191a7421a40f9f719a4 # Parent 6ed73116052c89245c58a5a61da698e3d60ed428 commit https://github.com/vim/vim/commit/acadbeabe1dafb314ae5fdba0432f313e55bb3a2 Author: Bram Moolenaar Date: Mon Aug 1 16:35:59 2016 +0200 patch 7.4.2140 Problem: Tiny build fails. Solution: Add dummy typedefs. diff --git a/src/structs.h b/src/structs.h --- a/src/structs.h +++ b/src/structs.h @@ -1380,6 +1380,16 @@ typedef struct dictitem_T *fd_di; /* Dictionary item used */ } funcdict_T; +#else +/* dummy typedefs for function prototypes */ +typedef struct +{ + int dummy; +} ufunc_T; +typedef struct +{ + int dummy; +} funcdict_T; #endif struct partial_S diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2140, +/**/ 2139, /**/ 2138,