diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-22 16:14:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-22 16:14:44 +0200 |
commit | 8f84c3a8666cea04484ec93fa05386bf33f93f5a (patch) | |
tree | e1447dddb24427816eb179f8d74931a44ad68837 /src/channel.c | |
parent | 5f7e7bdcf865df67099c59013775d14c85358300 (diff) | |
download | vim-git-8f84c3a8666cea04484ec93fa05386bf33f93f5a.tar.gz |
patch 8.0.0742: terminal feature does not work on MS-Windowsv8.0.0742
Problem: Terminal feature does not work on MS-Windows.
Solution: Use libvterm and libwinpty on MS-Windows. (Yasuhiro Matsumoto)
Diffstat (limited to 'src/channel.c')
-rw-r--r-- | src/channel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channel.c b/src/channel.c index db3468353..141bc5f37 100644 --- a/src/channel.c +++ b/src/channel.c @@ -4643,7 +4643,7 @@ job_still_useful(job_T *job) * 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 @@ free_unused_jobs(int copyID, int mask) /* * Allocate a job. Sets the refcount to one and sets options default. */ - static job_T * + job_T * job_alloc(void) { job_T *job; |