diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-02-25 22:37:15 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-02-25 22:37:15 +0100 |
commit | 376407674ff10b60e7c6090906be50982763f0f3 (patch) | |
tree | fb830a77dc0bcc1498fdff019ec4e348118941ec /src/option.c | |
parent | a713ff819d134dc34e507c05273c935bfc17e795 (diff) | |
download | vim-376407674ff10b60e7c6090906be50982763f0f3.zip |
patch 8.0.0373: build fails without +folding
Problem: Build fails without +folding.
Solution: Move misplaced #ifdef.
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/option.c b/src/option.c index 959af4fa4..459179e2e 100644 --- a/src/option.c +++ b/src/option.c @@ -1278,8 +1278,8 @@ static struct vimoption options[] = #endif SCRIPTID_INIT}, {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF| -#ifdef FEAT_FOLDING P_RWIN|P_ONECOMMA|P_NODUP, +#ifdef FEAT_FOLDING (char_u *)VAR_WIN, PV_FMR, {(char_u *)"{{{,}}}", (char_u *)NULL} #else |