diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-17 22:15:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-17 22:15:16 +0100 |
commit | 203258c3ad2966cc9d08b3805b103333988b30b7 (patch) | |
tree | bc95043f2a838d99b1205e548a73588429fa279f /src/proto/os_win32.pro | |
parent | 021b593e7ed6c7111cbf189744ad1e5d6c4a7d79 (diff) | |
download | vim-203258c3ad2966cc9d08b3805b103333988b30b7.zip |
patch 7.4.1128
Problem: MS-Windows: delete() does not recognize junctions.
Solution: Add mch_isrealdir() for MS-Windows. Update mch_is_symbolic_link().
(Ken Takata)
Diffstat (limited to 'src/proto/os_win32.pro')
-rw-r--r-- | src/proto/os_win32.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro index 7cdd15677..b3acb4f4c 100644 --- a/src/proto/os_win32.pro +++ b/src/proto/os_win32.pro @@ -21,6 +21,7 @@ int mch_setperm __ARGS((char_u *name, long perm)); void mch_hide __ARGS((char_u *name)); int mch_ishidden __ARGS((char_u *name)); int mch_isdir __ARGS((char_u *name)); +int mch_isrealdir __ARGS((char_u *name)); int mch_mkdir __ARGS((char_u *name)); int mch_rmdir __ARGS((char_u *name)); int mch_is_hard_link __ARGS((char_u *fname)); |