changeset 5971:1dbcb23ae7a8 v7.4.326

updated for version 7.4.326 Problem: Can't build Tiny version. (Elimar Riesebieter) Solution: Add #ifdef.
author Bram Moolenaar <bram@vim.org>
date Sat, 14 Jun 2014 12:53:33 +0200
parents 0509d27e2127
children 6e8b6a7f7bff
files src/version.c src/window.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    326,
+/**/
     325,
 /**/
     324,
--- 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