diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-03-31 00:51:46 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-01 08:08:07 -0300 |
commit | 7464b07c225629b3969cfdcd135f4ac1fa0b7a0b (patch) | |
tree | 0a386d6e94b8ecc414d15841364c22b4c9efdcc1 /src/os_unix.c | |
parent | 703490359118ecb2f66d3529b57771fd3dcff5b7 (diff) | |
download | rneovim-7464b07c225629b3969cfdcd135f4ac1fa0b7a0b.tar.gz rneovim-7464b07c225629b3969cfdcd135f4ac1fa0b7a0b.tar.bz2 rneovim-7464b07c225629b3969cfdcd135f4ac1fa0b7a0b.zip |
Move mch_expandpath from os_unix.c
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 8d42f54677..091bf7999e 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2406,22 +2406,6 @@ select_eintr: return ret > 0; } -#ifndef NO_EXPANDPATH -/* - * Expand a path into all matching files and/or directories. Handles "*", - * "?", "[a-z]", "**", etc. - * "path" has backslashes before chars that are not to be expanded. - * Returns the number of matches found. - */ -int mch_expandpath(gap, path, flags) -garray_T *gap; -char_u *path; -int flags; /* EW_* flags */ -{ - return unix_expandpath(gap, path, 0, flags, FALSE); -} -#endif - /* * mch_expand_wildcards() - this code does wild-card pattern matching using * the shell |