aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_updates.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-05-07 11:09:08 +0800
committerGitHub <noreply@github.com>2022-05-07 11:09:08 +0800
commitcd8edb551b6eed3424c2525e50d2a5eecbfe7ccf (patch)
tree6a31552ddf0586623cf8a27fb9406910264555fd /src/nvim/buffer_updates.c
parentf1bc321b563b04e03bf2921d9de65e622fb8d9cb (diff)
parentf5ed1b3908e7284e67d86d42711dc927870855b3 (diff)
downloadrneovim-cd8edb551b6eed3424c2525e50d2a5eecbfe7ccf.tar.gz
rneovim-cd8edb551b6eed3424c2525e50d2a5eecbfe7ccf.tar.bz2
rneovim-cd8edb551b6eed3424c2525e50d2a5eecbfe7ccf.zip
Merge pull request #18455 from zeertzjq/extmarksplice
fix(extmarks): revert to int for extmark row
Diffstat (limited to 'src/nvim/buffer_updates.c')
-rw-r--r--src/nvim/buffer_updates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_updates.c b/src/nvim/buffer_updates.c
index 49e3a03dac..3e2d04b3a2 100644
--- a/src/nvim/buffer_updates.c
+++ b/src/nvim/buffer_updates.c
@@ -299,7 +299,7 @@ void buf_updates_send_changes(buf_T *buf, linenr_T firstline, int64_t num_added,
kv_size(buf->update_callbacks) = j;
}
-void buf_updates_send_splice(buf_T *buf, linenr_T start_row, colnr_T start_col, bcount_t start_byte,
+void buf_updates_send_splice(buf_T *buf, int start_row, colnr_T start_col, bcount_t start_byte,
int old_row, colnr_T old_col, bcount_t old_byte, int new_row,
colnr_T new_col, bcount_t new_byte)
{