summaryrefslogtreecommitdiffstats
path: root/remailer.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2017-03-26 18:31:41 -0700
committerKevin McCarthy <kevin@8t8.us>2017-03-26 18:31:41 -0700
commit95070a7016d7334ac1d4e664e42afcfdcd96dc1f (patch)
treefb0658eb45aa00d93cbe249d365e54b1a7a72827 /remailer.c
parent5af1b825aef689984504a847c8589b2593a08d17 (diff)
Set refresh when popping the menu stack.
This removes the need for the OPTNEEDREDRAW option and MAYBE_REDRAW macro previously used to communicate back the need to refresh after exiting a menu. Remove the redraw parameter from ci_bounce_message() and mix_make_chain() which served the same purpose.
Diffstat (limited to 'remailer.c')
-rw-r--r--remailer.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/remailer.c b/remailer.c
index 8e0434a3..f476fdbe 100644
--- a/remailer.c
+++ b/remailer.c
@@ -487,7 +487,7 @@ static const struct mapping_t RemailerHelp[] =
};
-void mix_make_chain (LIST **chainp, int *redraw)
+void mix_make_chain (LIST **chainp)
{
LIST *p;
MIXCHAIN *chain;
@@ -513,8 +513,6 @@ void mix_make_chain (LIST **chainp, int *redraw)
return;
}
- *redraw = REDRAW_FULL;
-
chain = safe_calloc (sizeof (MIXCHAIN), 1);
for (p = *chainp; p; p = p->next)
mix_chain_add (chain, (char *) p->data, type2_list);