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 74c5bbf commit 846cdb2Copy full SHA for 846cdb2
2 files changed
src/eval.c
@@ -15197,13 +15197,13 @@ f_job_start(typval_T *argvars, typval_T *rettv)
15197
return;
15198
if (buf->b_ml.ml_mfp == NULL)
15199
{
15200
- char_u buf[NUMBUFLEN];
+ char_u numbuf[NUMBUFLEN];
15201
char_u *s;
15202
15203
if (opt.jo_set & JO_IN_BUF)
15204
15205
- sprintf((char *)buf, "%d", opt.jo_io_buf[PART_IN]);
15206
- s = buf;
+ sprintf((char *)numbuf, "%d", opt.jo_io_buf[PART_IN]);
+ s = numbuf;
15207
}
15208
else
15209
s = opt.jo_io_name[PART_IN];
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
+ 1534,
748
/**/
749
1533,
750
0 commit comments