X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-ui%2Fcurs_main.c;h=7b5b5ee2ac3184c92ce9916c76527b800e44abc8;hp=1d2be6d8da8ae040b767f720059f6d8f7aae4097;hb=23e6291cb5d5b4cd2008403d8b628007fd75ff23;hpb=4a0b020a3048f079979bea43c04f9fe388f9354d diff --git a/lib-ui/curs_main.c b/lib-ui/curs_main.c index 1d2be6d..7b5b5ee 100644 --- a/lib-ui/curs_main.c +++ b/lib-ui/curs_main.c @@ -14,6 +14,14 @@ # include "config.h" #endif +#include +#include +#include +#include +#include +#include +#include + #include #include #include @@ -25,6 +33,7 @@ #include "menu.h" #include "mutt.h" +#include "alias.h" #include "mx.h" #include "sort.h" #include "recvattach.h" @@ -46,16 +55,6 @@ #include "mutt_sasl.h" #endif -#include "lib/debug.h" - -#include -#include -#include -#include -#include -#include -#include - static const char *No_mailbox_is_open = N_("No mailbox is open."); static const char *There_are_no_messages = N_("There are no messages."); static const char *Mailbox_is_read_only = N_("Mailbox is read-only."); @@ -605,8 +604,6 @@ int mutt_index_menu (void) op = km_dokey (MENU_MAIN); - debug_print (4, ("Got op %d\n", op)); - if (op == -1) continue; /* either user abort or timeout */ @@ -752,7 +749,7 @@ int mutt_index_menu (void) break; } else { - LIST *ref = CURHDR->env->references; + string_list_t *ref = CURHDR->env->references; if (!ref) { mutt_error (_("Article has no parent reference!")); @@ -808,7 +805,7 @@ int mutt_index_menu (void) m_strcpy(buf, sizeof(buf), CURHDR->env->message_id); if (op == OP_RECONSTRUCT_THREAD) { - LIST *ref = CURHDR->env->references; + string_list_t *ref = CURHDR->env->references; while (ref) { nntp_check_msgid (Context, ref->data);