diff src/change.c @ 29660:e134ff00be57 v9.0.0170

patch 9.0.0170: various minor code formatting issues Commit: https://github.com/vim/vim/commit/113d9dec9958debbae2b611c98aed2f6f23c8502 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 8 15:49:18 2022 +0100 patch 9.0.0170: various minor code formatting issues Problem: Various minor code formatting issues. Solution: Improve code formatting.
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Aug 2022 17:00:05 +0200
parents 827d9f2b7a71
children d97b2ce26258
line wrap: on
line diff
--- 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;