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/ex_getln.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/ex_getln.pro')
-rw-r--r-- | src/proto/ex_getln.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ex_getln.pro b/src/proto/ex_getln.pro index a8f960b10..86e01b58c 100644 --- a/src/proto/ex_getln.pro +++ b/src/proto/ex_getln.pro @@ -32,7 +32,7 @@ char_u *addstar __ARGS((char_u *fname, int len, int context)); void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col)); int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches)); int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int)), int escaped)); -char_u *globpath __ARGS((char_u *path, char_u *file, int expand_options)); +void globpath __ARGS((char_u *path, char_u *file, garray_T *ga, int expand_options)); void init_history __ARGS((void)); int get_histtype __ARGS((char_u *name)); void add_to_history __ARGS((int histype, char_u *new_entry, int in_map, int sep)); |