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 298b440 commit fa06a51Copy full SHA for fa06a51
2 files changed
src/json.c
@@ -68,7 +68,12 @@ write_string(garray_T *gap, char_u *str)
68
default:
69
if (c >= 0x20)
70
{
71
+#ifdef FEAT_MBYTE
72
numbuf[mb_char2bytes(c, numbuf)] = NUL;
73
+#else
74
+ numbuf[0] = c;
75
+ numbuf[1] = NUL;
76
+#endif
77
ga_concat(gap, numbuf);
78
}
79
else
src/version.c
@@ -746,6 +746,8 @@ static char *(features[]) =
746
747
static int included_patches[] =
748
{ /* Add new patch number below this line */
749
+/**/
750
+ 1192,
751
/**/
752
1191,
753
0 commit comments