summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-02-12 14:00:03 +0100
committerBram Moolenaar <Bram@vim.org>2011-02-12 14:00:03 +0100
commite627fb00fcc7e5bf5de4dac6fca2204661de5783 (patch)
tree8601d3e5f54708fc17b58d511ceb1073af4a75fa
parentb292a2a04c719e2c6352595887eb4d3dd1f689a8 (diff)
updated for version 7.3.119v7.3.119
Problem: Build problem on Mac. (Nicholas Stallard) Solution: Use "extern" instead of "EXTERN" for p_vfile.
-rw-r--r--src/option.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h
index 91faabeeb0..e2e65a0cd8 100644
--- 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
index d6e5876e2f..962aa5cf52 100644
--- 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,