Mercurial > vim
changeset 3080:0ed06069aaf3 v7.3.312
updated for version 7.3.312
Problem: Can't compile with tiny features.
Solution: Add #ifdef around win_valid().
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 14 Sep 2011 17:50:14 +0200 |
parents | 76537068682d |
children | 1e50bdaa24f8 |
files | src/buffer.c src/version.c |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buffer.c +++ b/src/buffer.c @@ -416,7 +416,11 @@ close_buffer(win, buf, action) #endif buf_freeall(buf, (del_buf ? BFA_DEL : 0) + (wipe_buf ? BFA_WIPE : 0)); - if (win_valid(win) && win->w_buffer == buf) + if ( +#ifdef FEAT_WINDOWS + win_valid(win) && +#endif + win->w_buffer == buf) win->w_buffer = NULL; /* make sure we don't use the buffer now */ #ifdef FEAT_AUTOCMD