comparison src/if_lua.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 d0241e74bfdb
children 89e1d67814a9
comparison
equal deleted inserted replaced
29659:2198955f9e27 29660:e134ff00be57
1499 else if (ml_replace(n, luaV_toline(L, 3), TRUE) == FAIL) 1499 else if (ml_replace(n, luaV_toline(L, 3), TRUE) == FAIL)
1500 { 1500 {
1501 curbuf = buf; 1501 curbuf = buf;
1502 luaL_error(L, "cannot replace line"); 1502 luaL_error(L, "cannot replace line");
1503 } 1503 }
1504 else changed_bytes(n, 0); 1504 else
1505 changed_bytes(n, 0);
1505 curbuf = buf; 1506 curbuf = buf;
1506 if (b == curwin->w_buffer) 1507 if (b == curwin->w_buffer)
1507 check_cursor_col(); 1508 check_cursor_col();
1508 } 1509 }
1509 else 1510 else