diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-02-03 13:00:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-02-03 13:00:38 +0100 |
commit | 016154919e317a8ce2b7f2e33db2f39ca3a8edb9 (patch) | |
tree | cc3f87f501d05a34f04c9cce64f15d6728bf27bf /src/syntax.c | |
parent | 2459a5ecaa43c8549ea53e9364253ff891676da5 (diff) | |
download | vim-git-016154919e317a8ce2b7f2e33db2f39ca3a8edb9.tar.gz |
updated for version 7.4.610v7.4.610
Problem: Some function headers may be missing from generated .pro files.
Solution: Add PROTO to the #ifdef.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4f6ef924b..483a9b02f 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -6537,7 +6537,7 @@ syn_get_foldlevel(wp, lnum) } #endif -#ifdef FEAT_PROFILE +#if defined(FEAT_PROFILE) || defined(PROTO) /* * ":syntime". */ |