summaryrefslogtreecommitdiffstats
path: root/src/if_lua.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/if_lua.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/if_lua.c')
-rw-r--r--src/if_lua.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/if_lua.c b/src/if_lua.c
index 120ed7bbdd..250da02ae2 100644
--- a/src/if_lua.c
+++ b/src/if_lua.c
@@ -1501,7 +1501,8 @@ luaV_buffer_newindex(lua_State *L)
curbuf = buf;
luaL_error(L, "cannot replace line");
}
- else changed_bytes(n, 0);
+ else
+ changed_bytes(n, 0);
curbuf = buf;
if (b == curwin->w_buffer)
check_cursor_col();