diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-06 14:55:19 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-06 14:55:19 +0200 |
commit | f75125528325b396556eee58e4b2cb9622da4f14 (patch) | |
tree | bdd7760592a6a1ac42ae259aa746054830399165 /src/ex_docmd.c | |
parent | 8a7f5a2d4379bdc16502c01456bb4dc5051ed965 (diff) | |
download | vim-git-f75125528325b396556eee58e4b2cb9622da4f14.tar.gz |
updated for version 7.3.1130v7.3.1130
Problem: Can't build with anything but huge features.
Solution: Check for FEAT_PROFILE. (Yasuhiro Matsumoto)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 9b8bf8927..6b616ca8a 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -242,7 +242,7 @@ static void ex_popup __ARGS((exarg_T *eap)); # define ex_syntax ex_ni # define ex_ownsyntax ex_ni #endif -#if !defined(FEAT_SYN_HL) || !defined(FEAT_RELTIME) +#if !defined(FEAT_SYN_HL) || !defined(FEAT_PROFILE) # define ex_syntime ex_ni #endif #ifndef FEAT_SPELL |