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:
@@ -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
|
||||||
|
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user