# HG changeset patch # User Bram Moolenaar # Date 1297515603 -3600 # Node ID 77f3dd990b12aa963aa0a63f0db50f6443f3f41d # Parent 6d80dbca8501a4152908713778ce03e0f45b93f3 updated for version 7.3.119 Problem: Build problem on Mac. (Nicholas Stallard) Solution: Use "extern" instead of "EXTERN" for p_vfile. diff --git a/src/option.h b/src/option.h --- a/src/option.h +++ b/src/option.h @@ -857,7 +857,7 @@ EXTERN long p_verbose; /* 'verbose' */ #ifdef IN_OPTION_C char_u *p_vfile = (char_u *)""; /* used before options are initialized */ #else -EXTERN char_u *p_vfile; /* 'verbosefile' */ +extern char_u *p_vfile; /* 'verbosefile' */ #endif EXTERN int p_warn; /* 'warn' */ #ifdef FEAT_CMDL_COMPL diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 119, +/**/ 118, /**/ 117,