diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-08-10 21:07:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-08-10 21:07:57 +0000 |
commit | 0fa313a71870ccc2ba63da25a7abea850f5b3d02 (patch) | |
tree | fc949b566e1d78f6eea570aab55c52b7d6a6b052 /src/option.c | |
parent | c388fbf9d99a8950c8c9a01466cfb8baa104ee8c (diff) | |
download | vim-0fa313a71870ccc2ba63da25a7abea850f5b3d02.zip |
updated for version 7.0127
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 32eca0bf5..ab6672786 100644 --- a/src/option.c +++ b/src/option.c @@ -4121,7 +4121,7 @@ do_set(arg, opt_flags) ++arg; /* remove backslash */ #ifdef FEAT_MBYTE if (has_mbyte - && (i = (*mb_ptr2len_check)(arg)) > 1) + && (i = (*mb_ptr2len)(arg)) > 1) { /* copy multibyte char */ mch_memmove(s, arg, (size_t)i); |