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 dae8d21 commit 0f526f5Copy full SHA for 0f526f5
src/json.c
@@ -101,7 +101,7 @@ write_string(garray_T *gap, char_u *str)
101
/* always use utf-8 encoding, ignore 'encoding' */
102
c = utf_ptr2char(res);
103
#else
104
- c = (int)*(p);
+ c = *res;
105
#endif
106
107
switch (c)
@@ -142,7 +142,7 @@ write_string(garray_T *gap, char_u *str)
142
#ifdef FEAT_MBYTE
143
res += utf_ptr2len(res);
144
145
- ++p;
+ ++res;
146
147
}
148
ga_append(gap, '"');
src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
743
744
static int included_patches[] =
745
{ /* Add new patch number below this line */
746
+/**/
747
+ 1444,
748
/**/
749
1443,
750
0 commit comments