aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/change.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-07-23 15:25:35 +0200
committerDundar Göc <gocdundar@gmail.com>2021-07-25 21:51:50 +0200
commit11dcf1568251f7e54f5ea28310e1d603de089eca (patch)
treedefdc5456099598f76fca4e7988d0e33a495928f /src/nvim/change.c
parent192adfe99f33778a85e11fbfdceb37f347a3d235 (diff)
downloadrneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.tar.gz
rneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.tar.bz2
rneovim-11dcf1568251f7e54f5ea28310e1d603de089eca.zip
refactor: replace TRUE/FALSE macros with C99 true/false
Diffstat (limited to 'src/nvim/change.c')
-rw-r--r--src/nvim/change.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/change.c b/src/nvim/change.c
index ca1ca756bb..b30490deca 100644
--- a/src/nvim/change.c
+++ b/src/nvim/change.c
@@ -779,7 +779,7 @@ int del_bytes(colnr_T count, bool fixpos_arg, bool use_delcombine)
int movelen = oldlen - col - count + 1; // includes trailing NUL
if (movelen <= 1) {
// If we just took off the last character of a non-blank line, and
- // fixpos is TRUE, we don't want to end up positioned at the NUL,
+ // fixpos is true, we don't want to end up positioned at the NUL,
// unless "restart_edit" is set or 'virtualedit' contains "onemore".
if (col > 0 && fixpos && restart_edit == 0
&& (ve_flags & VE_ONEMORE) == 0