mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 00:08:19 +00:00
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1748,8 +1748,8 @@ static void edit_buffers(mparm_T *parmp, char_u *cwd)
|
||||
// at the ATTENTION prompt close the window.
|
||||
swap_exists_did_quit = false;
|
||||
(void)do_ecmd(0, arg_idx < GARGCOUNT
|
||||
? alist_name(&GARGLIST[arg_idx]) : NULL,
|
||||
NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
|
||||
? (char *)alist_name(&GARGLIST[arg_idx])
|
||||
: NULL, NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
|
||||
if (swap_exists_did_quit) {
|
||||
// abort or quit selected
|
||||
if (got_int || only_one_window()) {
|
||||
|
Reference in New Issue
Block a user