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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61b974b9ee69aac0bdbc96a5387f511063920614;p=vim updated for version 7.0-175 --- diff --git a/src/eval.c b/src/eval.c index 53ebc7845..f9177b3b3 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 b77a93edc..1e320534a 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, /**/