commit | 3fa57e0d50d90248de9ad1867203b8ce6eedc92a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Sep 19 22:23:26 2014 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Sep 19 22:23:26 2014 +0200 |
tree | 2f2bc9d5ad1194e656d6f127223ea4d9b1774ca1 | |
parent | eb21e4ccf5453ecd289e9f7e09fa27a978fc0360 [diff] [blame] |
updated for version 7.4.453 Problem: Still can't build with tiny features. Solution: Add #ifdef.
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index afc2154..b8076fc 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c
@@ -5906,6 +5906,7 @@ ex_helpclose(eap) exarg_T *eap UNUSED; { +#if defined(FEAT_WINDOWS) win_T *win; FOR_ALL_WINDOWS(win) @@ -5916,6 +5917,7 @@ return; } } +#endif } #if defined(FEAT_MULTI_LANG) || defined(PROTO)