0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

updated for version 7.2-243

This commit is contained in:
Bram Moolenaar
2009-07-29 14:24:36 +00:00
parent 801f8b865c
commit 5e9b4540fd
2 changed files with 8 additions and 1 deletions

View File

@@ -7467,6 +7467,10 @@ retry:
*/ */
FOR_ALL_TAB_WINDOWS(tp, wp) FOR_ALL_TAB_WINDOWS(tp, wp)
win_free_lsize(wp); win_free_lsize(wp);
#ifdef FEAT_AUTOCMD
if (aucmd_win != NULL)
win_free_lsize(aucmd_win);
#endif
new_ScreenLines = (schar_T *)lalloc((long_u)( new_ScreenLines = (schar_T *)lalloc((long_u)(
(Rows + 1) * Columns * sizeof(schar_T)), FALSE); (Rows + 1) * Columns * sizeof(schar_T)), FALSE);
@@ -7504,7 +7508,8 @@ retry:
} }
} }
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
if (aucmd_win != NULL && win_alloc_lines(aucmd_win) == FAIL) if (aucmd_win != NULL && aucmd_win->w_lines == NULL
&& win_alloc_lines(aucmd_win) == FAIL)
outofmem = TRUE; outofmem = TRUE;
#endif #endif
#ifdef FEAT_WINDOWS #ifdef FEAT_WINDOWS

View File

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