diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-21 23:34:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-21 23:34:43 +0200 |
commit | ebe74b73677b06db7d483987a863b41cee051cc0 (patch) | |
tree | 845132a5cdf2177e0d45e500e08443f57b3a3bf4 /src/proto/misc2.pro | |
parent | a69b39511d769bc88f0854bd026556fdb9bd2817 (diff) | |
download | vim-git-ebe74b73677b06db7d483987a863b41cee051cc0.tar.gz |
patch 8.0.1747: MS-Windows: term_start() does not set job_info() cmdv8.0.1747
Problem: MS-Windows: term_start() does not set job_info() cmd.
Solution: Share the code from job_start() to set jv_argv.
Diffstat (limited to 'src/proto/misc2.pro')
-rw-r--r-- | src/proto/misc2.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/misc2.pro b/src/proto/misc2.pro index 06e33f50c..770bd33c4 100644 --- a/src/proto/misc2.pro +++ b/src/proto/misc2.pro @@ -111,4 +111,6 @@ void time_to_bytes(time_T the_time, char_u *buf); int has_non_ascii(char_u *s); void parse_queued_messages(void); int mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc); +int build_argv_from_string(char_u *cmd, char ***argv, int *argc); +int build_argv_from_list(list_T *l, char ***argv, int *argc); /* vim: set ft=c : */ |