aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-04-07 18:04:18 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-08 21:56:05 -0300
commit6fb58d1c5c859402871e1d546f7fea1a91dd2995 (patch)
tree4244498e670f344ef20eeb5c3782604d22e770b2 /src/os_unix.c
parentaa7218b646e52554621471df3668c2e1d95aa9c9 (diff)
downloadrneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.tar.gz
rneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.tar.bz2
rneovim-6fb58d1c5c859402871e1d546f7fea1a91dd2995.zip
Change prefix from `os_*` to `path_*`
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 9727140597..3a3ecda276 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) && !os_can_exe((*file)[i]))
+ if (!dir && (flags & EW_EXEC) && !path_can_exe((*file)[i]))
continue;
p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));