From ddab33232a81e713c2748fc3daab763f07dd76f1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 14 Sep 2011 17:50:14 +0200 Subject: updated for version 7.3.312 Problem: Can't compile with tiny features. Solution: Add #ifdef around win_valid(). --- src/buffer.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/buffer.c') diff --git a/src/buffer.c b/src/buffer.c index 81f6fdee84..d4a9c1eeb1 100644 --- 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 -- cgit v1.2.3