mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.0-168
This commit is contained in:
@@ -1329,6 +1329,7 @@ theend:
|
|||||||
mf_put(mfp, hp, FALSE, FALSE);
|
mf_put(mfp, hp, FALSE, FALSE);
|
||||||
mf_close(mfp, FALSE); /* will also vim_free(mfp->mf_fname) */
|
mf_close(mfp, FALSE); /* will also vim_free(mfp->mf_fname) */
|
||||||
}
|
}
|
||||||
|
vim_free(buf->b_ml.ml_stack);
|
||||||
vim_free(buf);
|
vim_free(buf);
|
||||||
if (serious_error && called_from_main)
|
if (serious_error && called_from_main)
|
||||||
ml_close(curbuf, TRUE);
|
ml_close(curbuf, TRUE);
|
||||||
|
@@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
168,
|
||||||
/**/
|
/**/
|
||||||
167,
|
167,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -4273,7 +4273,7 @@ win_alloc_lines(wp)
|
|||||||
win_T *wp;
|
win_T *wp;
|
||||||
{
|
{
|
||||||
wp->w_lines_valid = 0;
|
wp->w_lines_valid = 0;
|
||||||
wp->w_lines = (wline_T *)alloc((unsigned)(Rows * sizeof(wline_T)));
|
wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
|
||||||
if (wp->w_lines == NULL)
|
if (wp->w_lines == NULL)
|
||||||
return FAIL;
|
return FAIL;
|
||||||
return OK;
|
return OK;
|
||||||
|
Reference in New Issue
Block a user