summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2022-04-15 20:50:46 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-15 20:50:46 +0100
commit7714231bb5b15f7c85453f3945c108478de1d08a (patch)
tree41748cd1bbbff5097437e576c617f19f11468dcf /src/proto
parent31e5c60a682840959cae6273ccadd9aae48c928d (diff)
downloadvim-git-7714231bb5b15f7c85453f3945c108478de1d08a.tar.gz
patch 8.2.4754: using cached values after unsetting some environment variablesv8.2.4754
Problem: Still using cached values after unsetting some known environment variables. Solution: Take care of the side effects. (closes #10194)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/misc1.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/misc1.pro b/src/proto/misc1.pro
index cc7e07a20..167805bd5 100644
--- a/src/proto/misc1.pro
+++ b/src/proto/misc1.pro
@@ -32,6 +32,7 @@ void expand_env(char_u *src, char_u *dst, int dstlen);
void expand_env_esc(char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr);
char_u *vim_getenv(char_u *name, int *mustfree);
void vim_unsetenv(char_u *var);
+void vim_unsetenv_ext(char_u *var);
void vim_setenv_ext(char_u *name, char_u *val);
void vim_setenv(char_u *name, char_u *val);
char_u *get_env_name(expand_T *xp, int idx);