Mercurial > vim
changeset 1042:932fe018ad16 v7.0.168
updated for version 7.0-168
author | vimboss |
---|---|
date | Tue, 21 Nov 2006 19:57:30 +0000 |
parents | c3bd0a84e11a |
children | 10d7ebdbe8a3 |
files | src/memline.c src/version.c src/window.c |
diffstat | 3 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/memline.c +++ b/src/memline.c @@ -1329,6 +1329,7 @@ theend: mf_put(mfp, hp, FALSE, FALSE); mf_close(mfp, FALSE); /* will also vim_free(mfp->mf_fname) */ } + vim_free(buf->b_ml.ml_stack); vim_free(buf); if (serious_error && called_from_main) ml_close(curbuf, TRUE);
--- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 168, +/**/ 167, /**/ 166,
--- a/src/window.c +++ b/src/window.c @@ -4273,7 +4273,7 @@ win_alloc_lines(wp) win_T *wp; { 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) return FAIL; return OK;