mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.1-046
This commit is contained in:
parent
943fae459d
commit
9225efbc96
@ -7014,7 +7014,14 @@ vim_regsub_both(source, dest, copy, magic, backslash)
|
||||
#ifdef FEAT_MBYTE
|
||||
if (has_mbyte)
|
||||
{
|
||||
int l = mb_ptr2len(s) - 1;
|
||||
int l;
|
||||
|
||||
/* Copy composing characters separately, one
|
||||
* at a time. */
|
||||
if (enc_utf8)
|
||||
l = utf_ptr2len(s) - 1;
|
||||
else
|
||||
l = mb_ptr2len(s) - 1;
|
||||
|
||||
s += l;
|
||||
len -= l;
|
||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
46,
|
||||
/**/
|
||||
45,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user