diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-07-26 15:20:51 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-07-26 17:12:35 +0200 |
commit | dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (patch) | |
tree | 1a2645100e08d01f1da4c9dd88413fd7432b894d /src/nvim/main.c | |
parent | 7b520cca3a8c6850610d899b180c3306df8899ab (diff) | |
download | rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.tar.gz rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.tar.bz2 rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.zip |
refactor: replace TRUE/FALSE with true/false
Focus is on global variables.
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index ed40da5866..8b8be9cc39 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -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); |