0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.4.326

Problem:    Can't build Tiny version. (Elimar Riesebieter)
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar
2014-06-14 12:53:33 +02:00
parent 0ae36a5c85
commit f0224c9f08
2 changed files with 4 additions and 0 deletions

View File

@@ -734,6 +734,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
326,
/**/
325,
/**/

View 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