diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-07-23 15:25:35 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-07-25 21:51:50 +0200 |
commit | 11dcf1568251f7e54f5ea28310e1d603de089eca (patch) | |
tree | defdc5456099598f76fca4e7988d0e33a495928f /src/nvim/change.c | |
parent | 192adfe99f33778a85e11fbfdceb37f347a3d235 (diff) | |
download | rneovim-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.c | 2 |
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 |