mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 19:38:20 +00:00
refactor: use ml_get_buf_len() in API code (#27825)
This commit is contained in:
@@ -1767,7 +1767,7 @@ void ex_luado(exarg_T *const eap)
|
||||
lua_pushvalue(lstate, -1);
|
||||
const char *const old_line = ml_get_buf(curbuf, l);
|
||||
// Get length of old_line here as calling Lua code may free it.
|
||||
const size_t old_line_len = strlen(old_line);
|
||||
const colnr_T old_line_len = ml_get_buf_len(curbuf, l);
|
||||
lua_pushstring(lstate, old_line);
|
||||
lua_pushnumber(lstate, (lua_Number)l);
|
||||
if (nlua_pcall(lstate, 2, 1)) {
|
||||
@@ -1791,7 +1791,7 @@ void ex_luado(exarg_T *const eap)
|
||||
}
|
||||
}
|
||||
ml_replace(l, new_line_transformed, false);
|
||||
inserted_bytes(l, 0, (int)old_line_len, (int)new_line_len);
|
||||
inserted_bytes(l, 0, old_line_len, (int)new_line_len);
|
||||
}
|
||||
lua_pop(lstate, 1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user