refactor: replace TRUE/FALSE with true/false

Focus is on global variables.
This commit is contained in:
Dundar Göc
2021-07-26 15:20:51 +02:00
parent 7b520cca3a
commit dfd9d861dc
9 changed files with 43 additions and 44 deletions

View File

@@ -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);