]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.326 v7.4.326
authorBram Moolenaar <Bram@vim.org>
Sat, 14 Jun 2014 10:53:33 +0000 (12:53 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 14 Jun 2014 10:53:33 +0000 (12:53 +0200)
Problem:    Can't build Tiny version. (Elimar Riesebieter)
Solution:   Add #ifdef.

src/version.c
src/window.c

index 0d0dfd2b44ddd62f1533547a00799c9fa449e0bd..6cc3d072eec7a2aae9933db63407267d3c48fa77 100644 (file)
@@ -734,6 +734,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    326,
 /**/
     325,
 /**/
index a94245a8184f2777f8639c9eb08791f936eff7ba..4a0ed23c78e18bd55027f2c0f4681d2249eed18e 100644 (file)
@@ -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