# HG changeset patch # User Christian Brabandt # Date 1459197009 -7200 # Node ID 26495bd795d223f37775af55c261aa55e78c375f # Parent 65feadd339b1ff2b836d56ad947a6e921776dd82 commit https://github.com/vim/vim/commit/8b29aba0192cc56294ef49bb3c01adff4b8f3a28 Author: Bram Moolenaar Date: Mon Mar 28 22:17:16 2016 +0200 patch 7.4.1678 Problem: Warning for unused argument. Solution: Add UNUSED. (Dominique Pelle) diff --git a/src/if_mzsch.c b/src/if_mzsch.c --- a/src/if_mzsch.c +++ b/src/if_mzsch.c @@ -1073,7 +1073,7 @@ load_base_module(void *data) } static Scheme_Object * -load_base_module_on_error(void *data) +load_base_module_on_error(void *data UNUSED) { load_base_module_failed = TRUE; return scheme_null; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1678, +/**/ 1677, /**/ 1676,