From f0224c9f085849f4da87faa878279a641055fe83 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 14 Jun 2014 12:53:33 +0200 Subject: [PATCH] updated for version 7.4.326 Problem: Can't build Tiny version. (Elimar Riesebieter) Solution: Add #ifdef. --- src/version.c | 2 ++ src/window.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/version.c b/src/version.c index 0d0dfd2b4..6cc3d072e 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 326, /**/ 325, /**/ diff --git a/src/window.c b/src/window.c index a94245a81..4a0ed23c7 100644 --- 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 -- 2.50.1