diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-04-08 17:50:10 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-08 21:56:05 -0300 |
commit | ac620411383259400cff2f12ffe576f066ed4ca7 (patch) | |
tree | a32272ff4afae8f7ef39f5ed94260c85a1eb92e7 /src/os_unix.c | |
parent | 6fb58d1c5c859402871e1d546f7fea1a91dd2995 (diff) | |
download | rneovim-ac620411383259400cff2f12ffe576f066ed4ca7.tar.gz rneovim-ac620411383259400cff2f12ffe576f066ed4ca7.tar.bz2 rneovim-ac620411383259400cff2f12ffe576f066ed4ca7.zip |
Move exe functions back to os/fs.c
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 3a3ecda276..9727140597 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1418,7 +1418,7 @@ int flags; /* EW_* flags */ continue; /* Skip files that are not executable if we check for that. */ - if (!dir && (flags & EW_EXEC) && !path_can_exe((*file)[i])) + if (!dir && (flags & EW_EXEC) && !os_can_exe((*file)[i])) continue; p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir)); |