summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-07-24 12:58:01 +0000
committervimboss <devnull@localhost>2007-07-24 12:58:01 +0000
commit9b6049623397f130065db5db6f6f2d8d0238e650 (patch)
tree9fce4a44364353218a0bc8c0003358fd5ae2ae19
parentbe2cc5ed334377a6f0e148f52113e8fc14484398 (diff)
downloadvim-9b6049623397f130065db5db6f6f2d8d0238e650.tar.gz
updated for version 7.1-037v7.1.037v7-1-037
-rw-r--r--src/option.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/option.c b/src/option.c
index 51e6a34e..68a779fd 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 22467d35..c3b268be 100644
--- 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 */
/**/
+ 37,
+/**/
36,
/**/
35,