diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-14 16:33:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 16:33:37 +0800 |
commit | 72a327cad20fa2dbb214177cc48c533543d5b9e8 (patch) | |
tree | 5682b3c2396ccb6250e4305931e514d1102a8dfb /src/nvim/os/env.c | |
parent | 37bb40701d672d5213ec1be4e21d7808aee968e7 (diff) | |
parent | 9c66b48316d85d24ee92d917765700713862aa2d (diff) | |
download | rneovim-72a327cad20fa2dbb214177cc48c533543d5b9e8.tar.gz rneovim-72a327cad20fa2dbb214177cc48c533543d5b9e8.tar.bz2 rneovim-72a327cad20fa2dbb214177cc48c533543d5b9e8.zip |
Merge pull request #23081 from zeertzjq/vim-8.2.1062
vim-patch:8.2.{1062,1063,1064,1065,1068,1069,1070,1071,1073,1074,1075,1076,1079,1080,1098,1099,1100,1125,1161,1162,1163,1203,3216}
Diffstat (limited to 'src/nvim/os/env.c')
-rw-r--r-- | src/nvim/os/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/env.c b/src/nvim/os/env.c index 0b06877f3c..26707fd6ca 100644 --- a/src/nvim/os/env.c +++ b/src/nvim/os/env.c @@ -603,7 +603,7 @@ void expand_env_esc(char *restrict srcp, char *restrict dst, int dstlen, bool es if (src[0] == '`' && src[1] == '=') { var = src; src += 2; - (void)skip_expr(&src); + (void)skip_expr(&src, NULL); if (*src == '`') { src++; } |