diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-26 20:41:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-26 20:41:54 +0200 |
commit | c818d8df349fff514eef8a529afe63e8102ca281 (patch) | |
tree | 0acd1856fccebc93e6c98725f211617f58e11c57 /src/nvim/main.c | |
parent | 3e00d4f01cebedb758050e2e3faf065036fcfdc2 (diff) | |
parent | dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (diff) | |
download | rneovim-c818d8df349fff514eef8a529afe63e8102ca281.tar.gz rneovim-c818d8df349fff514eef8a529afe63e8102ca281.tar.bz2 rneovim-c818d8df349fff514eef8a529afe63e8102ca281.zip |
Merge pull request #15197 from dundargoc/refactor/a-song-of-true-and-false/global-variables
refactor: replace TRUE/FALSE with true/false
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); |