aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/window.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2018-12-23 14:12:56 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2018-12-31 16:24:07 +0100
commit820c81e638768994f4e51fdb87eadf31664048ff (patch)
tree7f75b2710c29318c9e4022b0f248efbd82077f49 /src/nvim/window.c
parent44b8e58f33f82ca1a7c5dbb879a688e317026040 (diff)
downloadrneovim-820c81e638768994f4e51fdb87eadf31664048ff.tar.gz
rneovim-820c81e638768994f4e51fdb87eadf31664048ff.tar.bz2
rneovim-820c81e638768994f4e51fdb87eadf31664048ff.zip
multigrid: various cleanup (types, unused parameters)
Handle the rare case of full highlight table properly
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r--src/nvim/window.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c
index 39fc1897ae..7e381e7069 100644
--- a/src/nvim/window.c
+++ b/src/nvim/window.c
@@ -4299,7 +4299,6 @@ void win_setheight_win(int height, win_T *win)
}
frame_setheight(win->w_frame, height + win->w_status_height);
- win_grid_alloc(win, false);
/* recompute the window positions */
row = win_comp_pos();
@@ -4497,7 +4496,6 @@ void win_setwidth_win(int width, win_T *wp)
}
frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
- win_grid_alloc(wp, false);
/* recompute the window positions */
(void)win_comp_pos();