diff options
| author | Bram Moolenaar <Bram@vim.org> | 2007-07-24 12:58:01 +0000 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2007-07-24 12:58:01 +0000 |
| commit | 3afaae44a9a43df07a0437c4b2fa69cf2a4fbaa3 (patch) | |
| tree | 9fce4a44364353218a0bc8c0003358fd5ae2ae19 | |
| parent | 4f68858766b47e31a574a506fe9fafed0e90b672 (diff) | |
| download | vim-git-7.1.037.tar.gz | |
updated for version 7.1-037v7.1.037
| -rw-r--r-- | src/option.c | 2 | ||||
| -rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
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 @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 37, +/**/ 36, /**/ 35, |
