diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-10 23:18:53 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-10 23:18:53 +0100 |
commit | dce1e89be4675bcdbc9785584d3da25295481e63 (patch) | |
tree | bf5df09169e99ed6f60d67e2da4c4d29569d18a2 /src/proto/os_mswin.pro | |
parent | 3615abb693ab2d9374ae72f0993128e32ffa3e1c (diff) | |
download | vim-git-dce1e89be4675bcdbc9785584d3da25295481e63.tar.gz |
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/proto/os_mswin.pro')
-rw-r--r-- | src/proto/os_mswin.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/os_mswin.pro b/src/proto/os_mswin.pro index cc660a6d9..3e8d48707 100644 --- a/src/proto/os_mswin.pro +++ b/src/proto/os_mswin.pro @@ -37,7 +37,7 @@ int mch_print_text_out(char_u *p, int len); void mch_print_set_font(int iBold, int iItalic, int iUnderline); void mch_print_set_bg(long_u bgcol); void mch_print_set_fg(long_u fgcol); -char_u *mch_resolve_shortcut(char_u *fname); +char_u *mch_resolve_path(char_u *fname, int reparse_point); void win32_set_foreground(void); void serverInitMessaging(void); void serverSetName(char_u *name); |