changeset 11040:fde2cdef6b97 v8.0.0409

patch 8.0.0409: set_progpath is defined but not always used commit https://github.com/vim/vim/commit/595297d6d5658266dd0574361f77f7832bb18e26 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 4 19:11:12 2017 +0100 patch 8.0.0409: set_progpath is defined but not always used Problem: set_progpath is defined but not always used Solution: Adjust #ifdef.
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Mar 2017 19:15:04 +0100
parents 2d12e32c6d3f
children 02292c3afb7b
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
@@ -3528,7 +3528,7 @@ time_msg(
 
 #endif
 
-#ifndef NO_VIM_MAIN
+#if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
     static void
 set_progpath(char_u *argv0)
 {
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    409,
+/**/
     408,
 /**/
     407,