patch 9.0.0308: when cmdheight is zero the attention prompt doesn't show
Problem: When cmdheight is zero the attention prompt doesn't show.
Solution: Do not use the message window for a prompt.
diff --git a/src/message.c b/src/message.c
index c6fbfbd..096f274 100644
--- a/src/message.c
+++ b/src/message.c
@@ -1444,6 +1444,19 @@
}
/*
+ * Do not use the message window for the next message(s).
+ * Used when giving a prompt.
+ */
+ void
+dont_use_message_window(void)
+{
+#ifdef HAS_MESSAGE_WINDOW
+ popup_hide_message_win();
+ cmdline_row = Rows - 1;
+#endif
+}
+
+/*
* Prepare for outputting characters in the command line.
*/
void
@@ -4073,6 +4086,7 @@
}
#endif
+ dont_use_message_window();
oldState = State;
State = MODE_CONFIRM;
setmouse();