aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-07-26 20:41:54 +0200
committerGitHub <noreply@github.com>2021-07-26 20:41:54 +0200
commitc818d8df349fff514eef8a529afe63e8102ca281 (patch)
tree0acd1856fccebc93e6c98725f211617f58e11c57 /src/nvim/ex_docmd.c
parent3e00d4f01cebedb758050e2e3faf065036fcfdc2 (diff)
parentdfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (diff)
downloadrneovim-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/ex_docmd.c')
-rw-r--r--src/nvim/ex_docmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c
index cf604c2015..c83c19fc35 100644
--- a/src/nvim/ex_docmd.c
+++ b/src/nvim/ex_docmd.c
@@ -562,7 +562,7 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline,
&& (cstack.cs_looplevel || has_loop_cmd(next_cmdline))) {
store_loop_line(&lines_ga, next_cmdline);
}
- did_endif = FALSE;
+ did_endif = false;
if (count++ == 0) {
/*
@@ -940,7 +940,7 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline,
}
}
- did_endif = FALSE; /* in case do_cmdline used recursively */
+ did_endif = false; // in case do_cmdline used recursively
call_depth--;
end_batch_changes();
@@ -7486,7 +7486,7 @@ static void ex_syncbind(exarg_T *eap)
curwin = save_curwin;
curbuf = save_curbuf;
if (curwin->w_p_scb) {
- did_syncbind = TRUE;
+ did_syncbind = true;
checkpcmark();
if (old_linenr != curwin->w_cursor.lnum) {
char_u ctrl_o[2];