summaryrefslogtreecommitdiffstats
path: root/query.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 /query.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 'query.c')
-rw-r--r--query.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/query.c b/query.c
index 0ca596be..44296a2f 100644
--- a/query.c
+++ b/query.c
@@ -240,7 +240,6 @@ static void query_menu (char *buf, size_t buflen, QUERY *results, int retbuf)
int op;
char helpstr[SHORT_STRING];
char title[STRING];
- int savedmenu = CurrentMenu;
snprintf (title, sizeof (title), _("Query")); /* FIXME */
@@ -248,7 +247,7 @@ static void query_menu (char *buf, size_t buflen, QUERY *results, int retbuf)
menu->make_entry = query_entry;
menu->search = query_search;
menu->tag = query_tag;
- menu->menu = CurrentMenu = MENU_QUERY;
+ menu->menu = MENU_QUERY;
menu->title = title;
menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_QUERY, QueryHelp);
@@ -464,5 +463,4 @@ static void query_menu (char *buf, size_t buflen, QUERY *results, int retbuf)
}
mutt_menuDestroy (&menu);
- CurrentMenu = savedmenu;
}