changeset 13363:2103b009e32d v8.0.1555

patch 8.0.1555: build error for some combination of features commit https://github.com/vim/vim/commit/77780b66f4c5573df999a7319d77a852ea4ca837 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 1 23:10:45 2018 +0100 patch 8.0.1555: build error for some combination of features Problem: Build error for some combination of features. Solution: Declare variable in more situations.
author Christian Brabandt <cb@256bit.org>
date Thu, 01 Mar 2018 23:15:06 +0100
parents 3df741361ef8
children 53c7faf39d64
files src/main.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main.c
+++ b/src/main.c
@@ -111,7 +111,7 @@ main
 # endif
 (int argc, char **argv)
 {
-#ifdef STARTUPTIME
+#if defined(STARTUPTIME) || defined(CLEAN_RUNTIMEPATH)
     int		i;
 #endif
 
--- a/src/version.c
+++ b/src/version.c
@@ -779,6 +779,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1555,
+/**/
     1554,
 /**/
     1553,