diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-05 18:42:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 18:42:00 +0200 |
commit | d4f47fe17d5168304b73df26a5d8fe3b11832128 (patch) | |
tree | de2c438ed9b0936795ae4f99e9a6e4df2c6ffe2f /src/nvim/api/buffer.c | |
parent | 3e3e9c31255cd5c01bce96c68e5b1cf8e26a9f4d (diff) | |
parent | 9a671e6a24243a5ff2879599d91ab5aec8b4e77d (diff) | |
download | rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.tar.gz rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.tar.bz2 rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.zip |
Merge pull request #18416 from dundargoc/refactor/remove-char_u
refactor/remove char u
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index b4d4265a37..45dadae1dd 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -452,7 +452,7 @@ void nvim_buf_set_lines(uint64_t channel_id, Buffer buffer, Integer start, Integ goto end; } - if (ml_replace((linenr_T)lnum, (char_u *)lines[i], false) == FAIL) { + if (ml_replace((linenr_T)lnum, lines[i], false) == FAIL) { api_set_error(err, kErrorTypeException, "Failed to replace line"); goto end; } @@ -472,7 +472,7 @@ void nvim_buf_set_lines(uint64_t channel_id, Buffer buffer, Integer start, Integ goto end; } - if (ml_append((linenr_T)lnum, (char_u *)lines[i], 0, false) == FAIL) { + if (ml_append((linenr_T)lnum, lines[i], 0, false) == FAIL) { api_set_error(err, kErrorTypeException, "Failed to insert line"); goto end; } @@ -692,7 +692,7 @@ void nvim_buf_set_text(uint64_t channel_id, Buffer buffer, Integer start_row, In goto end; } - if (ml_replace((linenr_T)lnum, (char_u *)lines[i], false) == FAIL) { + if (ml_replace((linenr_T)lnum, lines[i], false) == FAIL) { api_set_error(err, kErrorTypeException, "Failed to replace line"); goto end; } @@ -710,7 +710,7 @@ void nvim_buf_set_text(uint64_t channel_id, Buffer buffer, Integer start_row, In goto end; } - if (ml_append((linenr_T)lnum, (char_u *)lines[i], 0, false) == FAIL) { + if (ml_append((linenr_T)lnum, lines[i], 0, false) == FAIL) { api_set_error(err, kErrorTypeException, "Failed to insert line"); goto end; } |