diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-05-07 18:35:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-05-07 18:35:30 +0200 |
commit | 1b1063af58b015b7827168f8fa2631efb60c252b (patch) | |
tree | ecebaed1979aee36aa61e9a7ea1bebdb597be0d6 /src/proto/misc2.pro | |
parent | 3ec7f4e4025c5a78ccd312f8516ac0740aa65dfe (diff) | |
download | vim-git-1b1063af58b015b7827168f8fa2631efb60c252b.tar.gz |
updated for version 7.4.279v7.4.279
Problem: globpath() returns a string, making it difficult to get a list of
matches. (Greg Novack)
Solution: Add an optional argument like with glob(). (Adnan Zafar)
Diffstat (limited to 'src/proto/misc2.pro')
-rw-r--r-- | src/proto/misc2.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/misc2.pro b/src/proto/misc2.pro index 544e669dc..4fd457382 100644 --- a/src/proto/misc2.pro +++ b/src/proto/misc2.pro @@ -55,7 +55,7 @@ void ga_clear_strings __ARGS((garray_T *gap)); void ga_init __ARGS((garray_T *gap)); void ga_init2 __ARGS((garray_T *gap, int itemsize, int growsize)); int ga_grow __ARGS((garray_T *gap, int n)); -char_u *ga_concat_strings __ARGS((garray_T *gap)); +char_u *ga_concat_strings __ARGS((garray_T *gap, char *sep)); void ga_concat __ARGS((garray_T *gap, char_u *s)); void ga_append __ARGS((garray_T *gap, int c)); void append_ga_line __ARGS((garray_T *gap)); |