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/shell.c | |
| 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/shell.c')
| -rw-r--r-- | src/os/shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os/shell.c b/src/os/shell.c index 51e6d65b5b..cbedf72a9c 100644 --- a/src/os/shell.c +++ b/src/os/shell.c @@ -53,3 +53,5 @@ int shell_count_argc(char_u **ptr) return rv; } + +char ** shell_build_argv(char_u **ptr, int argc); |