diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-10-30 21:57:52 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-10-30 21:57:52 +0100 |
commit | 3a117e19e02bf29cfc5e398470dd7851ae3d6803 (patch) | |
tree | cac4fb42e8c60f1df1047aa910fba1a799f11c4c /src/os_unix.c | |
parent | b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59 (diff) | |
download | vim-3a117e19e02bf29cfc5e398470dd7851ae3d6803.zip |
patch 8.0.0055
Problem: Minor comment and style deficiencies.
Solution: Update comments and fix style.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 6f365537c..6b26b0620 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -5390,6 +5390,10 @@ mch_detect_ended_job(job_T *job_list) return NULL; } +/* + * Send a (deadly) signal to "job". + * Return FAIL if "how" is not a valid name. + */ int mch_stop_job(job_T *job, char_u *how) { |