From 2a9e4df9fbdafd4386f0d6eff7e40a57f322b071 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 21 Feb 2009 23:59:19 +0000 Subject: updated for version 7.2-118 --- src/message.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/message.c') diff --git a/src/message.c b/src/message.c index e0f2897605..66bab9e923 100644 --- a/src/message.c +++ b/src/message.c @@ -976,7 +976,7 @@ wait_return(redraw) } } else if (msg_scrolled > Rows - 2 - && (c == 'j' || c == K_DOWN || c == 'd')) + && (c == 'j' || c == K_DOWN || c == 'd' || c == 'f')) c = K_IGNORE; } } while ((had_got_int && c == Ctrl_C) @@ -2504,7 +2504,6 @@ do_more_prompt(typed_char) break; case 'u': /* Up half a page */ - case K_PAGEUP: scroll = -(Rows / 2); break; @@ -2513,10 +2512,12 @@ do_more_prompt(typed_char) break; case 'b': /* one page back */ + case K_PAGEUP: scroll = -(Rows - 1); break; case ' ': /* one extra page */ + case 'f': case K_PAGEDOWN: case K_LEFTMOUSE: scroll = Rows - 1; -- cgit v1.2.3