diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-04 20:59:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-04 20:59:15 +0200 |
commit | 26262f87770d3a1a68b09a70152d75c2e2ae186f (patch) | |
tree | a051b686adb302a8d050a85007aa335787ced0b4 /src/os_unix.h | |
parent | 3f4f3d8e7e6fc0494d00cfb75669a554c8e67c8b (diff) | |
download | vim-git-26262f87770d3a1a68b09a70152d75c2e2ae186f.tar.gz |
patch 8.1.1985: code for dealing with paths is spread outv8.1.1985
Problem: Code for dealing with paths is spread out.
Solution: Move path related functions from misc1.c to filepath.c.
Remove NO_EXPANDPATH.
Diffstat (limited to 'src/os_unix.h')
-rw-r--r-- | src/os_unix.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/os_unix.h b/src/os_unix.h index 5df943c70..618c0e970 100644 --- a/src/os_unix.h +++ b/src/os_unix.h @@ -397,10 +397,6 @@ typedef struct dsc$descriptor DESC; /* Special wildcards that need to be handled by the shell */ #define SPECIAL_WILDCHAR "`'{" -#ifndef HAVE_OPENDIR -# define NO_EXPANDPATH -#endif - /* * Unix has plenty of memory, use large buffers */ |