diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-29 12:53:11 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-31 08:07:46 -0300 |
commit | c7919222249812947daa04d6d266b6aa561e5ef3 (patch) | |
tree | 4e38df95fca8dbd3a8a18fc722ffa8c32a7f027f /src/os_unix.h | |
parent | 8a61c27b1e301bb342758434f23bd7828790dcdf (diff) | |
download | rneovim-c7919222249812947daa04d6d266b6aa561e5ef3.tar.gz rneovim-c7919222249812947daa04d6d266b6aa561e5ef3.tar.bz2 rneovim-c7919222249812947daa04d6d266b6aa561e5ef3.zip |
Make `extra_shell_arg` a `mch_call_shell` parameter
Diffstat (limited to 'src/os_unix.h')
-rw-r--r-- | src/os_unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.h b/src/os_unix.h index ad7fa85ccb..48ce4f8e87 100644 --- a/src/os_unix.h +++ b/src/os_unix.h @@ -42,7 +42,7 @@ int mch_screenmode(char_u *arg); int mch_get_shellsize(void); void mch_set_shellsize(void); void mch_new_shellsize(void); -int mch_call_shell(char_u *cmd, int options); +int mch_call_shell(char_u *cmd, int options, char_u *extra_shell_arg); int mch_expandpath(garray_T *gap, char_u *path, int flags); int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, |