From: Bram Moolenaar Date: Wed, 14 Sep 2011 15:50:14 +0000 (+0200) Subject: updated for version 7.3.312 X-Git-Tag: v7.3.312 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ddab33232a81e713c2748fc3daab763f07dd76f1;p=vim updated for version 7.3.312 Problem: Can't compile with tiny features. Solution: Add #ifdef around win_valid(). --- diff --git a/src/buffer.c b/src/buffer.c index 81f6fdee8..d4a9c1eeb 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 diff --git a/src/version.c b/src/version.c index 42b4d5cdf..beb7347d5 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 312, /**/ 311, /**/