From: Bram Moolenaar Date: Mon, 3 Jan 2005 20:55:08 +0000 (+0000) Subject: updated for version 7.0029 X-Git-Tag: v7.0029~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a77e47767b761d0989e9c83c9e9e23bab3f7b1c;p=vim updated for version 7.0029 --- diff --git a/src/window.c b/src/window.c index b03e5ebae..7c88dc8e8 100644 --- a/src/window.c +++ b/src/window.c @@ -3090,7 +3090,7 @@ win_alloc(after) } #endif #ifdef FEAT_EVAL - var_init(&newwin->w_vars); /* init internal variables */ + vars_init(&newwin->w_vars); /* init internal variables */ #endif #ifdef FEAT_FOLDING foldInitWin(newwin); @@ -3134,7 +3134,7 @@ win_free(wp) clear_winopt(&wp->w_allbuf_opt); #ifdef FEAT_EVAL - var_clear(&wp->w_vars); /* free all internal variables */ + vars_clear(&wp->w_vars); /* free all internal variables */ #endif if (prevwin == wp)