diff options
author | John Schmidt <john.schmidt.h@gmail.com> | 2014-03-27 18:53:20 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-29 13:29:53 -0300 |
commit | 44e40b02cf53c95ab248b98df44ec3dd836bb4b5 (patch) | |
tree | 310e8a4957d70a1ba841e82cdb33d374c75028d6 /src/ex_getln.c | |
parent | f5154d7451c09b39ea6944795c59f86aaad393e0 (diff) | |
download | rneovim-44e40b02cf53c95ab248b98df44ec3dd836bb4b5.tar.gz rneovim-44e40b02cf53c95ab248b98df44ec3dd836bb4b5.tar.bz2 rneovim-44e40b02cf53c95ab248b98df44ec3dd836bb4b5.zip |
Move remove_duplicates to garray.c
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index 7605032b58..a7a3b80222 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4207,7 +4207,7 @@ static int ExpandRTDir(char_u *pat, int *num_file, char_u ***file, char *dirname /* Sort and remove duplicates which can happen when specifying multiple * directories in dirnames. */ - remove_duplicates(&ga); + ga_remove_duplicate_strings(&ga); *file = ga.ga_data; *num_file = ga.ga_len; |