mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -86,7 +86,7 @@ void alist_expand(int *fnum_list, int fnum_len)
|
||||
// can't set the options.
|
||||
p_su = empty_option;
|
||||
for (int i = 0; i < GARGCOUNT; i++) {
|
||||
old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
|
||||
old_arg_files[i] = xstrdup(GARGLIST[i].ae_fname);
|
||||
}
|
||||
int old_arg_count = GARGCOUNT;
|
||||
char **new_arg_files;
|
||||
|
||||
Reference in New Issue
Block a user