Skip to content
Snippets Groups Projects
Commit dfef1548 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.600

Problem:    <f-args> is not expanded properly with DBCS encoding.
Solution:   Skip over character instead of byte. (Yukihiro Nakadaira)
parent 89af4394
No related merge requests found
......@@ -5845,8 +5845,14 @@ uc_split_args(arg, lenp)
}
else
{
#ifdef FEAT_MBYTE
int charlen = (*mb_ptr2len)(p);
len += charlen;
p += charlen;
#else
++len;
++p;
#endif
}
}
......@@ -5889,7 +5895,7 @@ uc_split_args(arg, lenp)
}
else
{
*q++ = *p++;
MB_COPY_CHAR(p, q);
}
}
*q++ = '"';
......
......@@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
600,
/**/
599,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment