summaryrefslogtreecommitdiffstats
path: root/src/popupwin.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-31 14:46:18 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-31 14:46:18 +0100
commita2a8973e51a0052bb52e43a2b22e7ecdecc32003 (patch)
tree42700a5eab4930539b87591ad903f7271b527fc3 /src/popupwin.c
parenta63ad78ed31e36dbdf3a9cd28071dcdbefce7d19 (diff)
patch 9.0.0340: the 'cmdheight' zero support causes too much troublev9.0.0340
Problem: The 'cmdheight' zero support causes too much trouble. Solution: Revert support for 'cmdheight' being zero.
Diffstat (limited to 'src/popupwin.c')
-rw-r--r--src/popupwin.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/popupwin.c b/src/popupwin.c
index 2f9df8d9e8..8292dba32e 100644
--- a/src/popupwin.c
+++ b/src/popupwin.c
@@ -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
/*