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 /src/option.c | |
parent | 4f68858766b47e31a574a506fe9fafed0e90b672 (diff) | |
download | vim-git-3afaae44a9a43df07a0437c4b2fa69cf2a4fbaa3.tar.gz |
updated for version 7.1-037v7.1.037
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 2 |
1 files changed, 1 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; } } |