From a568e8b644a41b12388b7c7de4ca0fb8dc107f18 Mon Sep 17 00:00:00 2001 From: Klemen Košir Date: Tue, 29 Apr 2014 10:52:10 +0200 Subject: Replaced most TRUE/FALSE macros in arabic, mbyte and spell. #645 --- src/nvim/ex_cmds2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nvim/ex_cmds2.c') diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 0b0026829f..7a34aba6b9 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -1534,17 +1534,17 @@ void get_arglist(garray_T *gap, char_u *str) /* * Parse a list of arguments (file names), expand them and return in - * "fnames[fcountp]". When "wig" is TRUE, removes files matching 'wildignore'. + * "fnames[fcountp]". When "wig" is true, removes files matching 'wildignore'. * Return FAIL or OK. */ -int get_arglist_exp(char_u *str, int *fcountp, char_u ***fnamesp, int wig) +int get_arglist_exp(char_u *str, int *fcountp, char_u ***fnamesp, bool wig) { garray_T ga; int i; get_arglist(&ga, str); - if (wig == TRUE) + if (wig) i = expand_wildcards(ga.ga_len, (char_u **)ga.ga_data, fcountp, fnamesp, EW_FILE|EW_NOTFOUND); else -- cgit