diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-11 16:31:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-11 16:31:54 +0200 |
commit | 2d33e90f81334eee34275a259444434abf56250f (patch) | |
tree | b225046c33e7f57130c423c9c920813f425fbec8 /src/os_win32.c | |
parent | e41e3b41f991bd610f889dea57676526704fea5f (diff) | |
download | vim-git-2d33e90f81334eee34275a259444434abf56250f.tar.gz |
patch 8.0.0899: function name mch_stop_job() is confusingv8.0.0899
Problem: Function name mch_stop_job() is confusing.
Solution: Rename to mch_signal_job().
Diffstat (limited to 'src/os_win32.c')
-rw-r--r-- | src/os_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_win32.c b/src/os_win32.c index 2ee3f2e17..9dc039b99 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -5248,7 +5248,7 @@ theend: * Return FAIL if it didn't work. */ int -mch_stop_job(job_T *job, char_u *how) +mch_signal_job(job_T *job, char_u *how) { int ret; |