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 c5215e9 commit 8cc6977Copy full SHA for 8cc6977
src/eval.c
@@ -7800,6 +7800,7 @@ job_unref(job_T *job)
7800
{
7801
job_free(job);
7802
}
7803
+# ifdef FEAT_CHANNEL
7804
else if (job->jv_channel != NULL)
7805
7806
/* Do remove the link to the channel, otherwise it hangs
@@ -7808,6 +7809,7 @@ job_unref(job_T *job)
7808
7809
channel_unref(job->jv_channel);
7810
job->jv_channel = NULL;
7811
7812
+# endif
7813
7814
7815
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
+ 1449,
748
/**/
749
1448,
750
0 commit comments