summaryrefslogtreecommitdiffstats
path: root/addrbook.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-10-16 14:29:27 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-10-16 14:29:27 +0000
commitcaa76b15549cdb79ca272322b4d68919aa5fe490 (patch)
tree5ccfc8666cf46b36d8993c6be4a0c42e6f895e72 /addrbook.c
parenta21ee788daa9d4e3296bf36c0a8f6d37df1f56e4 (diff)
Address book nit fix from geerd.debruijn@nl.thalesgroup.com.
Diffstat (limited to 'addrbook.c')
-rw-r--r--addrbook.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/addrbook.c b/addrbook.c
index f85c8d06..66cb61b3 100644
--- a/addrbook.c
+++ b/addrbook.c
@@ -29,6 +29,8 @@
static struct mapping_t AliasHelp[] = {
{ N_("Exit"), OP_EXIT },
+ { N_("Del"), OP_DELETE },
+ { N_("Undel"), OP_UNDELETE },
{ N_("Select"), OP_GENERIC_SELECT_ENTRY },
{ N_("Help"), OP_HELP },
{ NULL }
@@ -199,7 +201,7 @@ new_aliases:
if (option (OPTRESOLVE) && menu->current < menu->max - 1)
{
menu->current++;
- menu->redraw |= REDRAW_MOTION;
+ menu->redraw |= REDRAW_INDEX;
}
}
break;