forked from aniani/vim
patch 8.0.0899: function name mch_stop_job() is confusing
Problem: Function name mch_stop_job() is confusing. Solution: Rename to mch_signal_job().
This commit is contained in:
@@ -63,7 +63,7 @@ int mch_call_shell(char_u *cmd, int options);
|
||||
void mch_job_start(char **argv, job_T *job, jobopt_T *options);
|
||||
char *mch_job_status(job_T *job);
|
||||
job_T *mch_detect_ended_job(job_T *job_list);
|
||||
int mch_stop_job(job_T *job, char_u *how);
|
||||
int mch_signal_job(job_T *job, char_u *how);
|
||||
void mch_clear_job(job_T *job);
|
||||
void mch_breakcheck(int force);
|
||||
int mch_expandpath(garray_T *gap, char_u *path, int flags);
|
||||
|
||||
@@ -45,7 +45,7 @@ int mch_call_shell(char_u *cmd, int options);
|
||||
void mch_job_start(char *cmd, job_T *job, jobopt_T *options);
|
||||
char *mch_job_status(job_T *job);
|
||||
job_T *mch_detect_ended_job(job_T *job_list);
|
||||
int mch_stop_job(job_T *job, char_u *how);
|
||||
int mch_signal_job(job_T *job, char_u *how);
|
||||
void mch_clear_job(job_T *job);
|
||||
void mch_set_normal_colors(void);
|
||||
void mch_write(char_u *s, int len);
|
||||
|
||||
Reference in New Issue
Block a user