X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=90e2bdca18e373c18990f276e241693d08f6bc0f;hp=05b6b11609999e5927adc72aedb4036eed45343e;hb=6ea736d5aa28a6e24885bc8278d080d5a0f8dfb8;hpb=83532821ae9fab034d0d630b78330c9ea4ff4cf3 diff --git a/menu.c b/menu.c index 05b6b11..90e2bdc 100644 --- a/menu.c +++ b/menu.c @@ -22,10 +22,7 @@ #include "mbyte.h" #include "sidebar.h" -#ifdef USE_IMAP -#include "imap.h" -#endif - +#include #include #include @@ -628,7 +625,7 @@ void menu_prev_entry (MUTTMENU * menu) mutt_error _("You are on the first entry."); } -static int default_color (int i) +static int default_color (int i __attribute__ ((unused))) { return ColorDefs[MT_COLOR_NORMAL]; } @@ -808,10 +805,7 @@ int mutt_menuLoop (MUTTMENU * menu) mutt_curs_set (0); - -#ifdef USE_IMAP imap_keepalive (); -#endif if (menu_redraw (menu) == OP_REDRAW) return OP_REDRAW; @@ -976,10 +970,10 @@ int mutt_menuLoop (MUTTMENU * menu) menu->redraw = REDRAW_INDEX; } else if (menu->max) { - int i = menu->tag (menu, menu->current, -1); + int t = menu->tag (menu, menu->current, -1); - menu->tagged += i; - if (i && option (OPTRESOLVE) && menu->current < menu->max - 1) { + menu->tagged += t; + if (t && option (OPTRESOLVE) && menu->current < menu->max - 1) { menu->current++; menu->redraw = REDRAW_MOTION_RESYNCH; }