We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1dc76f commit e178af5Copy full SHA for e178af5
2 files changed
src/term.c
@@ -3366,6 +3366,12 @@ check_shellsize(void)
3366
if (Rows < min_rows()) // need room for one window and command line
3367
Rows = min_rows();
3368
limit_screen_size();
3369
+
3370
+ // make sure these values are not invalid
3371
+ if (cmdline_row >= Rows)
3372
+ cmdline_row = Rows - 1;
3373
+ if (msg_row >= Rows)
3374
+ msg_row = Rows - 1;
3375
}
3376
3377
/*
src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
735
736
static int included_patches[] =
737
{ /* Add new patch number below this line */
738
+/**/
739
+ 5160,
740
/**/
741
5159,
742
0 commit comments