# HG changeset patch # User vimboss # Date 1235446684 0 # Node ID b54d2f702d41f4fbb8bb3d33e52faf94568b2170 # Parent cfccbe492612c69ee77d6cca4adb690794e5feac updated for version 7.2-127 diff --git a/src/message.c b/src/message.c --- a/src/message.c +++ b/src/message.c @@ -2553,7 +2553,6 @@ do_more_prompt(typed_char) { /* Jump to the choices of the dialog. */ retval = TRUE; - lines_left = Rows - 1; } else #endif @@ -2561,6 +2560,9 @@ do_more_prompt(typed_char) got_int = TRUE; quit_more = TRUE; } + /* When there is some more output (wrapping line) display that + * without another prompt. */ + lines_left = Rows - 1; break; #ifdef FEAT_CLIPBOARD diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 127, +/**/ 126, /**/ 125,