Mercurial > vim
annotate src/proto/job.pro @ 23303:9af15022894c v8.2.2197
patch 8.2.2197: assert arguments order reversed
Commit: https://github.com/vim/vim/commit/9f63a65f22b6a899925ba15adbb711e86251114e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Dec 23 12:50:20 2020 +0100
patch 8.2.2197: assert arguments order reversed
Problem: Assert arguments order reversed.
Solution: Swap the arguments. (Christian Brabandt, closes https://github.com/vim/vim/issues/7531)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 23 Dec 2020 13:00:04 +0100 |
parents | 2cc0de1e05a6 |
children | 8fdf839af1f4 |
rev | line source |
---|---|
22095
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* job.c */ |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 void clear_job_options(jobopt_T *opt); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 void free_job_options(jobopt_T *opt); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 int get_job_options(typval_T *tv, jobopt_T *opt, int supported, int supported2); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 void job_free_all(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 int job_any_running(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 int win32_build_cmd(list_T *l, garray_T *gap); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 void job_cleanup(job_T *job); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 int set_ref_in_job(int copyID); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 void job_unref(job_T *job); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 int free_unused_jobs_contents(int copyID, int mask); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 void free_unused_jobs(int copyID, int mask); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 job_T *job_alloc(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 void job_set_options(job_T *job, jobopt_T *opt); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 void job_stop_on_exit(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 int has_pending_job(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 int job_check_ended(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 job_T *job_start(typval_T *argvars, char **argv_arg, jobopt_T *opt_arg, job_T **term_job); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 char *job_status(job_T *job); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 int job_stop(job_T *job, typval_T *argvars, char *type); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 void invoke_prompt_callback(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 int invoke_prompt_interrupt(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 char_u *buf_prompt_text(buf_T *buf); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
24 char_u *prompt_text(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 void init_prompt(int cmdchar_todo); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
26 int prompt_curpos_editable(void); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
27 void f_prompt_setcallback(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
28 void f_prompt_setinterrupt(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
29 void f_prompt_getprompt(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
30 void f_prompt_setprompt(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
31 void f_job_getchannel(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
32 void f_job_info(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
33 void f_job_setoptions(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
34 void f_job_start(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
35 void f_job_status(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
36 void f_job_stop(typval_T *argvars, typval_T *rettv); |
2cc0de1e05a6
patch 8.2.1597: the channel source file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
37 /* vim: set ft=c : */ |