# HG changeset patch # User Bram Moolenaar # Date 1374054868 -7200 # Node ID 1b89e3f916c59fbdfdbd31e4d8af8b22274275b2 # Parent c015eedb9b4a960693691712f632dd0684ad5d06 updated for version 7.4a.025 Problem: Get the press-Enter prompt even after using :redraw. Solution: Clear need_wait_return when executing :redraw. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -8981,6 +8981,9 @@ ex_redraw(eap) msg_didout = FALSE; msg_col = 0; + /* No need to wait after an intentional redraw. */ + need_wait_return = FALSE; + out_flush(); } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 25, +/**/ 24, /**/ 23,