summaryrefslogtreecommitdiffstats
path: root/src/change.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-08 15:49:18 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-08 15:49:18 +0100
commit113d9dec9958debbae2b611c98aed2f6f23c8502 (patch)
tree2754a33490ebac3606c606496c8c8de8f3e3613d /src/change.c
parent48c3f4e0bff7efd289a7001b68c777b6f89a7057 (diff)
patch 9.0.0170: various minor code formatting issuesv9.0.0170
Problem: Various minor code formatting issues. Solution: Improve code formatting.
Diffstat (limited to 'src/change.c')
-rw-r--r--src/change.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/change.c b/src/change.c
index 66f34c00c5..a9a9e731f1 100644
--- a/src/change.c
+++ b/src/change.c
@@ -1298,7 +1298,7 @@ del_bytes(
// 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
- && (get_ve_flags() & VE_ONEMORE) == 0)
+ && (get_ve_flags() & VE_ONEMORE) == 0)
{
--curwin->w_cursor.col;
curwin->w_cursor.coladd = 0;