summaryrefslogtreecommitdiff
path: root/src/proto/os_unix.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-03-21 17:32:19 +0100
committerBram Moolenaar <Bram@vim.org>2015-03-21 17:32:19 +0100
commitb5971141dff0c69355fd64196fcc0d0d071d4c82 (patch)
treef2a062bcfa6558a9bd58d24c23924d403ec39170 /src/proto/os_unix.pro
parent4df702999d14955255fcdfb820511767dcfec463 (diff)
downloadvim-git-b5971141dff0c69355fd64196fcc0d0d071d4c82.tar.gz
updated for version 7.4.672v7.4.672
Problem: When completing a shell command, directories in the current directory are not listed. Solution: When "." is not in $PATH also look in the current directory for directories.
Diffstat (limited to 'src/proto/os_unix.pro')
-rw-r--r--src/proto/os_unix.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/os_unix.pro b/src/proto/os_unix.pro
index a59b6aa5e..23434ba9f 100644
--- a/src/proto/os_unix.pro
+++ b/src/proto/os_unix.pro
@@ -42,7 +42,7 @@ void mch_set_acl __ARGS((char_u *fname, vim_acl_T aclent));
void mch_free_acl __ARGS((vim_acl_T aclent));
void mch_hide __ARGS((char_u *name));
int mch_isdir __ARGS((char_u *name));
-int mch_can_exe __ARGS((char_u *name, char_u **path));
+int mch_can_exe __ARGS((char_u *name, char_u **path, int use_path));
int mch_nodetype __ARGS((char_u *name));
void mch_early_init __ARGS((void));
void mch_free_mem __ARGS((void));