diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-10-30 21:56:23 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-10-30 21:56:23 +0100 |
commit | ba6febd380c931b92361a189e85b19ed467c9c64 (patch) | |
tree | 86e7b30ed0e9902f1ce681a8535011ffe04bdf33 /src/proto/os_win32.pro | |
parent | 48570488f17e397183ea7d5c7ca67d6e4ffb013d (diff) | |
download | vim-git-ba6febd380c931b92361a189e85b19ed467c9c64.tar.gz |
patch 8.0.1240: MS-Windows: term_start() does not support environmentv8.0.1240
Problem: MS-Windows: term_start() does not support environment.
Solution: Implement the environment argument. (Yasuhiro Matsumoto, closes
#2264)
Diffstat (limited to 'src/proto/os_win32.pro')
-rw-r--r-- | src/proto/os_win32.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro index 7e6953c7d..188a45be0 100644 --- a/src/proto/os_win32.pro +++ b/src/proto/os_win32.pro @@ -67,4 +67,5 @@ void used_file_arg(char *name, int literal, int full_path, int diff_mode); void set_alist_count(void); void fix_arg_enc(void); int mch_setenv(char *var, char *value, int x); +void win32_build_env(dict_T *l, garray_T *gap); /* vim: set ft=c : */ |