patch 8.0.0742: terminal feature does not work on MS-Windows
Problem: Terminal feature does not work on MS-Windows.
Solution: Use libvterm and libwinpty on MS-Windows. (Yasuhiro Matsumoto)
diff --git a/src/channel.c b/src/channel.c
index db34683..141bc5f 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -4643,7 +4643,7 @@
* changed to JOB_ENDED (i.e. after job_status() returned "dead" first or
* mch_detect_ended_job() returned non-NULL).
*/
- static void
+ void
job_cleanup(job_T *job)
{
if (job->jv_status != JOB_ENDED)
@@ -4773,7 +4773,7 @@
/*
* Allocate a job. Sets the refcount to one and sets options default.
*/
- static job_T *
+ job_T *
job_alloc(void)
{
job_T *job;