diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-21 16:40:11 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-21 16:40:11 +0100 |
commit | 65edff8f51e9e54f85407bdb9156ae8e3e1b76a1 (patch) | |
tree | 6982c12c67d2e65ed987df609968f647585d18eb /src/proto | |
parent | 08298fa1d3e32c2af476582792fc4f70cd57a59a (diff) | |
download | vim-git-65edff8f51e9e54f85407bdb9156ae8e3e1b76a1.tar.gz |
patch 7.4.1378v7.4.1378
Problem: Can't change job settings after it started.
Solution: Add job_setoptions() with the "stoponexit" flag.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/eval.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index e63205e11..780b40c53 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -80,6 +80,7 @@ dictitem_T *dict_find(dict_T *d, char_u *key, int len); char_u *get_dict_string(dict_T *d, char_u *key, int save); long get_dict_number(dict_T *d, char_u *key); int channel_unref(channel_T *channel); +void job_stop_on_exit(void); int string2float(char_u *text, float_T *value); char_u *get_function_name(expand_T *xp, int idx); char_u *get_expr_name(expand_T *xp, int idx); |