mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 08:18:17 +00:00
refactor: replace TRUE/FALSE with true/false
Focus is on global variables.
This commit is contained in:
@@ -1430,7 +1430,7 @@ static void handle_quickfix(mparm_T *paramp)
|
||||
static void handle_tag(char_u *tagname)
|
||||
{
|
||||
if (tagname != NULL) {
|
||||
swap_exists_did_quit = FALSE;
|
||||
swap_exists_did_quit = false;
|
||||
|
||||
vim_snprintf((char *)IObuff, IOSIZE, "ta %s", tagname);
|
||||
do_cmdline_cmd((char *)IObuff);
|
||||
@@ -1638,7 +1638,7 @@ static void edit_buffers(mparm_T *parmp, char_u *cwd)
|
||||
curwin->w_arg_idx = arg_idx;
|
||||
/* Edit file from arg list, if there is one. When "Quit" selected
|
||||
* at the ATTENTION prompt close the window. */
|
||||
swap_exists_did_quit = FALSE;
|
||||
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);
|
||||
|
Reference in New Issue
Block a user