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 1b66c00 commit b4a6721Copy full SHA for b4a6721
2 files changed
src/terminal.c
@@ -629,7 +629,8 @@ term_job_running(term_T *term)
629
{
630
/* Also consider the job finished when the channel is closed, to avoid a
631
* race condition when updating the title. */
632
- return term->tl_job != NULL
+ return term != NULL
633
+ && term->tl_job != NULL
634
&& term->tl_job->jv_status == JOB_STARTED
635
&& channel_is_open(term->tl_job->jv_channel);
636
}
src/version.c
@@ -769,6 +769,8 @@ static char *(features[]) =
769
770
static int included_patches[] =
771
{ /* Add new patch number below this line */
772
+/**/
773
+ 853,
774
/**/
775
852,
776
0 commit comments