commit | dce1e89be4675bcdbc9785584d3da25295481e63 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Feb 10 23:18:53 2019 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Feb 10 23:18:53 2019 +0100 |
tree | bf5df09169e99ed6f60d67e2da4c4d29569d18a2 | |
parent | 3615abb693ab2d9374ae72f0993128e32ffa3e1c [diff] [blame] |
patch 8.1.0894: MS-Windows: resolve() does not return a reparse point Problem: MS-Windows: resolve() does not return a reparse point. Solution: Improve resolve(). (Yasuhiro Matsumoto, closes #3896)
diff --git a/src/evalfunc.c b/src/evalfunc.c index c18ab31..4c03470 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c
@@ -9912,7 +9912,7 @@ { char_u *v = NULL; - v = mch_resolve_shortcut(p); + v = mch_resolve_path(p, TRUE); if (v != NULL) rettv->vval.v_string = v; else