From 8de49e183d4f44c723bff5c1744f1373934b4cca Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 11 Feb 2009 17:47:54 +0000 Subject: [PATCH] updated for version 7.2-107 --- src/message.c | 5 ++++- src/version.c | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/message.c b/src/message.c index 5e3e530e0..e0f289760 100644 --- a/src/message.c +++ b/src/message.c @@ -3309,7 +3309,10 @@ do_dialog(type, title, message, buttons, dfltbutton, textfield) { c = gui_mch_dialog(type, title, message, buttons, dfltbutton, textfield); - msg_end_prompt(); + /* avoid a hit-enter prompt without clearing the cmdline */ + need_wait_return = FALSE; + emsg_on_display = FALSE; + cmdline_row = msg_row; /* Flush output to avoid that further messages and redrawing is done * in the wrong order. */ diff --git a/src/version.c b/src/version.c index 0ff2fd2dd..04dbca663 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 107, /**/ 106, /**/ -- 2.50.1