diff src/buffer.c @ 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 0787bb5f387b
children e42252611e74
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