From: Bram Moolenaar Date: Tue, 5 Dec 2006 09:32:29 +0000 (+0000) Subject: updated for version 7.0-175 X-Git-Tag: v7.0.175 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61b974b9ee69aac0bdbc96a5387f511063920614;p=thirdparty%2Fvim.git updated for version 7.0-175 --- diff --git a/src/eval.c b/src/eval.c index 53ebc78451..f9177b3b3d 100644 --- a/src/eval.c +++ b/src/eval.c @@ -16073,6 +16073,10 @@ error: } } + /* add a terminating NUL */ + ga_grow(&ga, 1); + ga_append(&ga, NUL); + rettv->vval.v_string = ga.ga_data; } diff --git a/src/version.c b/src/version.c index b77a93edc5..1e320534a8 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 175, /**/ 174, /**/