Merge pull request #1209 from atwupack/vp-7.4.320

vim-patch:7.4.320
This commit is contained in:
Justin M. Keyes
2014-09-26 16:05:49 -04:00
5 changed files with 20 additions and 7 deletions

View File

@@ -3695,7 +3695,12 @@ win_free (
if (wp != aucmd_win)
win_remove(wp, tp);
free(wp);
if (autocmd_busy) {
wp->w_next = au_pending_free_win;
au_pending_free_win = wp;
} else {
free(wp);
}
unblock_autocmds();
}