diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-06-14 12:53:33 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-06-14 12:53:33 +0200 |
commit | f0224c9f085849f4da87faa878279a641055fe83 (patch) | |
tree | 45b5c555edee090af9a41df797798fd19233ed20 /src/window.c | |
parent | 0ae36a5c8542d51dd0d70035e997d96e4a20dcbb (diff) | |
download | vim-git-f0224c9f085849f4da87faa878279a641055fe83.tar.gz |
updated for version 7.4.326v7.4.326
Problem: Can't build Tiny version. (Elimar Riesebieter)
Solution: Add #ifdef.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index a94245a81..4a0ed23c7 100644 --- a/src/window.c +++ b/src/window.c @@ -4597,12 +4597,14 @@ win_free(wp, tp) if (wp != aucmd_win) #endif win_remove(wp, tp); +#ifdef FEAT_AUTOCMD if (autocmd_busy) { wp->w_next = au_pending_free_win; au_pending_free_win = wp; } else +#endif vim_free(wp); #ifdef FEAT_AUTOCMD |