From: Bram Moolenaar Date: Tue, 24 Jul 2007 12:58:01 +0000 (+0000) Subject: updated for version 7.1-037 X-Git-Tag: v7.1.037 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3afaae44a9a43df07a0437c4b2fa69cf2a4fbaa3;p=vim updated for version 7.1-037 --- diff --git a/src/option.c b/src/option.c index 51e6a34ea..68a779fd0 100644 --- a/src/option.c +++ b/src/option.c @@ -4628,7 +4628,7 @@ do_set(arg, opt_flags) if ((!(flags & P_COMMA) || *s != ',') && vim_strchr(s + 1, *s) != NULL) { - STRCPY(s, s + 1); + mch_memmove(s, s + 1, STRLEN(s)); --s; } } diff --git a/src/version.c b/src/version.c index 22467d358..c3b268bee 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 */ +/**/ + 37, /**/ 36, /**/