---
src/message.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/message.c b/src/message.c
index e0f2897..1cb7344 100644
--- a/src/message.c
+++ b/src/message.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,6 +2512,7 @@ do_more_prompt(typed_char)
break;
case 'b': /* one page back */
+ case K_PAGEUP:
scroll = -(Rows - 1);
break;
--
1.6.2.rc0.93.g1228
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---