diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-04-05 19:44:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-04-05 19:44:40 +0200 |
commit | 39c29ed5118ab513554d1d51d6a98e65f32784ba (patch) | |
tree | 01f3df4888dd4be45f2098fe71b574436d1e3a72 /src/proto/misc1.pro | |
parent | 57ebe6e2f94edad6adc43246d98919e728095211 (diff) | |
download | vim-git-39c29ed5118ab513554d1d51d6a98e65f32784ba.tar.gz |
updated for version 7.4.248v7.4.248
Problem: Cannot distinguish between NL and NUL in output of system().
Solution: Add systemlist(). (ZyX)
Diffstat (limited to 'src/proto/misc1.pro')
-rw-r--r-- | src/proto/misc1.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/misc1.pro b/src/proto/misc1.pro index 394880a1e..9f986d76c 100644 --- a/src/proto/misc1.pro +++ b/src/proto/misc1.pro @@ -100,7 +100,7 @@ int unix_expandpath __ARGS((garray_T *gap, char_u *path, int wildoff, int flags, void remove_duplicates __ARGS((garray_T *gap)); int gen_expand_wildcards __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file, int flags)); void addfile __ARGS((garray_T *gap, char_u *f, int flags)); -char_u *get_cmd_output __ARGS((char_u *cmd, char_u *infile, int flags)); +char_u *get_cmd_output __ARGS((char_u *cmd, char_u *infile, int flags, int *ret_len)); void FreeWild __ARGS((int count, char_u **files)); int goto_im __ARGS((void)); /* vim: set ft=c : */ |