aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/garray.c
diff options
context:
space:
mode:
authorScott Prager <splinterofchaos@gmail.com>2014-07-31 20:05:56 -0400
committerScott Prager <splinterofchaos@gmail.com>2014-08-04 12:01:58 -0400
commit5617ee8f352a2ddb61f52e5e0ae7347957d95991 (patch)
treeea02a09468e209540bb487187f82c05825ec0eb1 /src/nvim/garray.c
parentb53034d423f055bbcca8b5a030dd51fcf458d182 (diff)
downloadrneovim-5617ee8f352a2ddb61f52e5e0ae7347957d95991.tar.gz
rneovim-5617ee8f352a2ddb61f52e5e0ae7347957d95991.tar.bz2
rneovim-5617ee8f352a2ddb61f52e5e0ae7347957d95991.zip
vim-patch:7.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) https://code.google.com/p/vim/source/detail?r=8e9db1f27a0063df023cc05a760fce73255dad24
Diffstat (limited to 'src/nvim/garray.c')
-rw-r--r--src/nvim/garray.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/garray.c b/src/nvim/garray.c
index 033ea9baac..1d96e18a31 100644
--- a/src/nvim/garray.c
+++ b/src/nvim/garray.c
@@ -133,6 +133,7 @@ void ga_remove_duplicate_strings(garray_T *gap)
/// strings with sep as separator.
///
/// @param gap
+/// @param sep
///
/// @returns the concatenated strings
char_u *ga_concat_strings_sep(const garray_T *gap, const char *sep)