summaryrefslogtreecommitdiffstats
path: root/pager.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 /pager.c
parentacbb122c96f8b9412abff097dc154d08f6030907 (diff)
Remove the OP_PAGER_EXIT opcode, and change it to OP_EXIT.
Diffstat (limited to 'pager.c')
-rw-r--r--pager.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/pager.c b/pager.c
index 217c4f8f..6f530eee 100644
--- a/pager.c
+++ b/pager.c
@@ -1379,15 +1379,15 @@ upNLines (int nlines, struct line_t *info, int cur, int hiding)
}
static struct mapping_t PagerHelp[] = {
- { N_("Exit"), OP_PAGER_EXIT },
- { N_("PrevPg"), OP_PREV_PAGE },
+ { N_("Exit"), OP_EXIT },
+ { N_("PrevPg"), OP_PREV_PAGE },
{ N_("NextPg"), OP_NEXT_PAGE },
{ NULL, 0 }
};
static struct mapping_t PagerHelpExtra[] = {
- { N_("View Attachm."), OP_VIEW_ATTACHMENTS },
- { N_("Del"), OP_DELETE },
- { N_("Reply"), OP_REPLY },
+ { N_("View Attachm."), OP_VIEW_ATTACHMENTS },
+ { N_("Del"), OP_DELETE },
+ { N_("Reply"), OP_REPLY },
{ N_("Next"), OP_MAIN_NEXT_UNDELETED },
{ NULL, 0 }
};
@@ -1764,7 +1764,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
switch (ch)
{
- case OP_PAGER_EXIT:
+ case OP_EXIT:
rc = -1;
ch = -1;
break;