summaryrefslogtreecommitdiffstats
path: root/keymap.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-02-15 08:30:26 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-02-15 08:30:26 +0000
commita8f2b96f72eb9b02be9f7ffda35e68bf6ce966e0 (patch)
tree199760af82a331d0cec955ed30974c31aa96d260 /keymap.c
parentacbb122c96f8b9412abff097dc154d08f6030907 (diff)
Remove the OP_PAGER_EXIT opcode, and change it to OP_EXIT.
Diffstat (limited to 'keymap.c')
-rw-r--r--keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keymap.c b/keymap.c
index 397e5fc6..6e0cfa60 100644
--- a/keymap.c
+++ b/keymap.c
@@ -588,8 +588,8 @@ void km_init (void)
km_bindkey ("<enter>", MENU_MAIN, OP_DISPLAY_MESSAGE);
- km_bindkey ("x", MENU_PAGER, OP_PAGER_EXIT);
- km_bindkey ("q", MENU_PAGER, OP_PAGER_EXIT);
+ km_bindkey ("x", MENU_PAGER, OP_EXIT);
+ km_bindkey ("q", MENU_PAGER, OP_EXIT);
km_bindkey ("<backspace>", MENU_PAGER, OP_PREV_LINE);
km_bindkey ("<pagedown>", MENU_PAGER, OP_NEXT_PAGE);
km_bindkey ("<pageup>", MENU_PAGER, OP_PREV_PAGE);