diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-02-12 14:00:03 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-02-12 14:00:03 +0100 |
commit | e627fb00fcc7e5bf5de4dac6fca2204661de5783 (patch) | |
tree | 8601d3e5f54708fc17b58d511ceb1073af4a75fa /src/option.h | |
parent | b292a2a04c719e2c6352595887eb4d3dd1f689a8 (diff) | |
download | vim-git-e627fb00fcc7e5bf5de4dac6fca2204661de5783.tar.gz |
updated for version 7.3.119v7.3.119
Problem: Build problem on Mac. (Nicholas Stallard)
Solution: Use "extern" instead of "EXTERN" for p_vfile.
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index 91faabeeb..e2e65a0cd 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 |