1
0
forked from aniani/vim

patch 9.0.0340: the 'cmdheight' zero support causes too much trouble

Problem:    The 'cmdheight' zero support causes too much trouble.
Solution:   Revert support for 'cmdheight' being zero.
This commit is contained in:
Bram Moolenaar
2022-08-31 14:46:18 +01:00
parent a63ad78ed3
commit a2a8973e51
32 changed files with 46 additions and 404 deletions

View File

@@ -29,7 +29,7 @@ static poppos_entry_T poppos_entries[] = {
};
#ifdef HAS_MESSAGE_WINDOW
// Window used for messages when 'winheight' is zero.
// Window used for ":echowindow"
static win_T *message_win = NULL;
#endif
@@ -4529,16 +4529,6 @@ popup_hide_message_win(void)
popup_hide(message_win);
}
/*
* If the message window exists: close it.
*/
void
popup_close_message_win(void)
{
if (message_win != NULL)
popup_close(message_win->w_id, TRUE);
}
#endif
/*