comparison src/main.c @ 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 516391d8865f
children 576238eda5a4
comparison
equal deleted inserted replaced
11039:2d12e32c6d3f 11040:fde2cdef6b97
3526 } 3526 }
3527 } 3527 }
3528 3528
3529 #endif 3529 #endif
3530 3530
3531 #ifndef NO_VIM_MAIN 3531 #if !defined(NO_VIM_MAIN) && defined(FEAT_EVAL)
3532 static void 3532 static void
3533 set_progpath(char_u *argv0) 3533 set_progpath(char_u *argv0)
3534 { 3534 {
3535 char_u *val = argv0; 3535 char_u *val = argv0;
3536 char_u buf[MAXPATHL]; 3536 char_u buf[MAXPATHL];