1
0
forked from aniani/vim

patch 8.2.5041: cannot close a terminal popup with "NONE" job

Problem:    Cannot close a terminal popup with "NONE" job.
Solution:   Adjust the conditions for whether a job is running.
            (closes #10498)
This commit is contained in:
Bram Moolenaar
2022-05-29 22:37:05 +01:00
parent fc376e0b1a
commit 9e636b9d2e
6 changed files with 36 additions and 5 deletions

View File

@@ -3574,7 +3574,7 @@ u_blockfree(buf_T *buf)
bufIsChanged(buf_T *buf)
{
#ifdef FEAT_TERMINAL
if (term_job_running(buf->b_term))
if (term_job_running_not_none(buf->b_term))
return TRUE;
#endif
return bufIsChangedNotTerm(buf);