changeset 2702:77f3dd990b12 v7.3.119

updated for version 7.3.119 Problem: Build problem on Mac. (Nicholas Stallard) Solution: Use "extern" instead of "EXTERN" for p_vfile.
author Bram Moolenaar <bram@vim.org>
date Sat, 12 Feb 2011 14:00:03 +0100
parents 6d80dbca8501
children 47a0dcad7216
files src/option.h src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,