mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
Move exe functions back to os/fs.c
This commit is contained in:

committed by
Thiago de Arruda

parent
6fb58d1c5c
commit
ac62041138
@@ -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));
|
||||
|
Reference in New Issue
Block a user