1
0
forked from aniani/vim

patch 9.0.0170: various minor code formatting issues

Problem:    Various minor code formatting issues.
Solution:   Improve code formatting.
This commit is contained in:
Bram Moolenaar
2022-08-08 15:49:18 +01:00
parent 48c3f4e0bf
commit 113d9dec99
7 changed files with 12 additions and 6 deletions

View File

@@ -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;