summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-12-07 16:30:42 +0000
committerBram Moolenaar <Bram@vim.org>2007-12-07 16:30:42 +0000
commitc3b730796caf9b8faa2db6f5a35fa55a1368bfd5 (patch)
tree83ce9b1af57cfc14246a643458e0ae8b27b17974
parente6f565a7becb53a19bd56b9d61fbeb8d52f5d42b (diff)
downloadvim-git-7.1.170.tar.gz
updated for version 7.1-170v7.1.170
-rw-r--r--src/getchar.c5
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 4d6da38dd..0e78a7bd8 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -253,8 +253,9 @@ add_buff(buf, s, slen)
return;
}
else if (buf->bh_index != 0)
- STRCPY(buf->bh_first.b_next->b_str,
- buf->bh_first.b_next->b_str + buf->bh_index);
+ mch_memmove(buf->bh_first.b_next->b_str,
+ buf->bh_first.b_next->b_str + buf->bh_index,
+ STRLEN(buf->bh_first.b_next->b_str + buf->bh_index) + 1);
buf->bh_index = 0;
if (buf->bh_space >= (int)slen)
diff --git a/src/version.c b/src/version.c
index 240fd8913..c43de8852 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 */
/**/
+ 170,
+/**/
169,
/**/
168,