diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-06-29 18:34:45 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-09-09 21:22:21 +0200 |
commit | 82fb6a881805658359777ab172f91d1a84b91b8d (patch) | |
tree | 436f30c3eec409827c4f27cfa4994d6786fe73e4 /src/nvim/buffer_updates.c | |
parent | 9437327d5ee627ddb15bfbc88112bd77e4e3ffcf (diff) | |
download | rneovim-82fb6a881805658359777ab172f91d1a84b91b8d.tar.gz rneovim-82fb6a881805658359777ab172f91d1a84b91b8d.tar.bz2 rneovim-82fb6a881805658359777ab172f91d1a84b91b8d.zip |
fix lints
Diffstat (limited to 'src/nvim/buffer_updates.c')
-rw-r--r-- | src/nvim/buffer_updates.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/nvim/buffer_updates.c b/src/nvim/buffer_updates.c index 1e7cc8520f..79483380c9 100644 --- a/src/nvim/buffer_updates.c +++ b/src/nvim/buffer_updates.c @@ -282,10 +282,11 @@ void buf_updates_send_changes(buf_T *buf, kv_size(buf->update_callbacks) = j; } -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) +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) { if (!buf_updates_active(buf)) { return; |