We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3b425 commit e3f5b68Copy full SHA for e3f5b68
src/ex_docmd.c
@@ -5845,8 +5845,14 @@ uc_split_args(arg, lenp)
5845
}
5846
else
5847
{
5848
+#ifdef FEAT_MBYTE
5849
+ int charlen = (*mb_ptr2len)(p);
5850
+ len += charlen;
5851
+ p += charlen;
5852
+#else
5853
++len;
5854
++p;
5855
+#endif
5856
5857
5858
@@ -5889,7 +5895,7 @@ uc_split_args(arg, lenp)
5889
5895
5890
5896
5891
5897
5892
- *q++ = *p++;
5898
+ MB_COPY_CHAR(p, q);
5893
5899
5894
5900
5901
*q++ = '"';
src/version.c
@@ -714,6 +714,8 @@ static char *(features[]) =
714
715
static int included_patches[] =
716
{ /* Add new patch number below this line */
717
+/**/
718
+ 600,
719
/**/
720
599,
721
0 commit comments