diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-09-16 20:54:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-09-16 20:54:51 +0200 |
commit | 4033c55eca575777718c0701e26635a0cc47d907 (patch) | |
tree | 8dc460ad495106198a9119b52f6505033f7a75b3 /src/fold.c | |
parent | e738a1a033cd31cd2568ba99a9e2dca1e65b45ea (diff) | |
download | vim-git-4033c55eca575777718c0701e26635a0cc47d907.tar.gz |
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefsv8.0.1118
Problem: FEAT_WINDOWS adds a lot of #ifdefs while it is nearly always
enabled and only adds 7% to the binary size of the tiny build.
Solution: Graduate FEAT_WINDOWS.
Diffstat (limited to 'src/fold.c')
-rw-r--r-- | src/fold.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fold.c b/src/fold.c index f8abe22d7..bc79accb6 100644 --- a/src/fold.c +++ b/src/fold.c @@ -95,7 +95,7 @@ static int foldendmarkerlen; /* Exported folding functions. {{{1 */ /* copyFoldingState() {{{2 */ -#if defined(FEAT_WINDOWS) || defined(PROTO) + /* * Copy that folding state from window "wp_from" to window "wp_to". */ @@ -106,7 +106,6 @@ copyFoldingState(win_T *wp_from, win_T *wp_to) wp_to->w_foldinvalid = wp_from->w_foldinvalid; cloneFoldGrowArray(&wp_from->w_folds, &wp_to->w_folds); } -#endif /* hasAnyFolding() {{{2 */ /* |