summaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-02-10 23:18:53 +0100
committerBram Moolenaar <Bram@vim.org>2019-02-10 23:18:53 +0100
commitdce1e89be4675bcdbc9785584d3da25295481e63 (patch)
treebf5df09169e99ed6f60d67e2da4c4d29569d18a2 /src/buffer.c
parent3615abb693ab2d9374ae72f0993128e32ffa3e1c (diff)
patch 8.1.0894: MS-Windows: resolve() does not return a reparse pointv8.1.0894
Problem: MS-Windows: resolve() does not return a reparse point. Solution: Improve resolve(). (Yasuhiro Matsumoto, closes #3896)
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index e0b616498a..7dd4d34e28 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4847,7 +4847,7 @@ fname_expand(
char_u *rfname;
// If the file name is a shortcut file, use the file it links to.
- rfname = mch_resolve_shortcut(*ffname);
+ rfname = mch_resolve_path(*ffname, FALSE);
if (rfname != NULL)
{
vim_free(*ffname);