aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/screen.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-01-28 22:54:03 +0100
committerDundar Göc <gocdundar@gmail.com>2022-01-30 19:16:51 +0100
commit2793fcae0ac2aef14c8f22636d579c68a97c0851 (patch)
tree5cddb34fa2afee8587a11aa5b431b7859b451536 /src/nvim/screen.c
parent46bd48f7e902250dbccdea71ec6eb3888588133f (diff)
downloadrneovim-2793fcae0ac2aef14c8f22636d579c68a97c0851.tar.gz
rneovim-2793fcae0ac2aef14c8f22636d579c68a97c0851.tar.bz2
rneovim-2793fcae0ac2aef14c8f22636d579c68a97c0851.zip
vim-patch:8.2.4241: some type casts are redundant
Problem: Some type casts are redundant. Solution: Remove the type casts. (closes vim/vim#9643) https://github.com/vim/vim/commit/420fabcd4ffeaf79082a6e43db91e1d363f88f27 This is not a literal port but an equivalent one.
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r--src/nvim/screen.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c
index af023d6785..1654960148 100644
--- a/src/nvim/screen.c
+++ b/src/nvim/screen.c
@@ -6919,8 +6919,6 @@ void grid_ins_lines(ScreenGrid *grid, int row, int line_count, int end, int col,
if (!grid->throttled) {
ui_call_grid_scroll(grid->handle, row, end, col, col+width, -line_count, 0);
}
-
- return;
}
/// delete lines on the screen and move lines up.
@@ -6971,8 +6969,6 @@ void grid_del_lines(ScreenGrid *grid, int row, int line_count, int end, int col,
if (!grid->throttled) {
ui_call_grid_scroll(grid->handle, row, end, col, col+width, line_count, 0);
}
-
- return;
}