summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index 47fb81597..b54813f4f 100644
--- a/src/window.c
+++ b/src/window.c
@@ -5518,6 +5518,18 @@ frame_comp_pos(frame_T *topfrp, int *row, int *col)
}
/*
+ * Make the current window show at least one line and one column.
+ */
+ void
+win_ensure_size()
+{
+ if (curwin->w_height == 0)
+ win_setheight(1);
+ if (curwin->w_width == 0)
+ win_setwidth(1);
+}
+
+/*
* Set current window height and take care of repositioning other windows to
* fit around it.
*/