diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-02-24 03:38:04 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-02-24 03:38:04 +0000 |
commit | 51306d2d8fb9ff4f0d3bb1826bde81b287bf95d4 (patch) | |
tree | a296e41b9d89ee033c0f916e0af27bc217f57c98 /src/message.c | |
parent | de0dfed7013f5c40b3ef9fb448edb7fa6ab65bb4 (diff) | |
download | vim-git-51306d2d8fb9ff4f0d3bb1826bde81b287bf95d4.tar.gz |
updated for version 7.2-127v7.2.127
Diffstat (limited to 'src/message.c')
-rw-r--r-- | src/message.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c index 66bab9e92..ffa45a199 100644 --- 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 |