summaryrefslogtreecommitdiffstats
path: root/postpone.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-12 19:53:42 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-12 19:53:42 +0000
commit187ac0ce86e8aa5f8103fedfc68f2ca7acf2137c (patch)
tree4963c8671ed6b33d9a8856c3590c18c5c09c919c /postpone.c
parentd6b1a4d9eccd565bbafa82aee1dfbf085a4f47e2 (diff)
The attached patch removes some redundant code related to the macro
function stuff. Since each menu calls km_dokey() to get the 'op' number to execute, the 'menu' argument to km_dokey() _is_ the CurrentMenu. Hence, there is no need to explicitly save/restore the CurrentMenu all over the code. The only places it is being captured now is just before mutt_enter_comamnd() is called. This is to help the 'exec' command completion code so that it knows which menu to try and complete the function name from. (From: Vikas Agnihotri <VikasA@att.com>)
Diffstat (limited to 'postpone.c')
-rw-r--r--postpone.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/postpone.c b/postpone.c
index 027e2b05..4b8cfb72 100644
--- a/postpone.c
+++ b/postpone.c
@@ -103,11 +103,10 @@ static HEADER *select_msg (void)
MUTTMENU *menu;
int i, done=0, r=-1;
char helpstr[SHORT_STRING];
- int savedmenu = CurrentMenu;
menu = mutt_new_menu ();
menu->make_entry = post_entry;
- menu->menu = CurrentMenu = MENU_POST;
+ menu->menu = MENU_POST;
menu->max = PostContext->msgcount;
menu->title = _("Postponed Messages");
menu->data = PostContext;
@@ -149,7 +148,6 @@ static HEADER *select_msg (void)
}
mutt_menuDestroy (&menu);
- CurrentMenu = savedmenu;
return (r > -1 ? PostContext->hdrs[r] : NULL);
}