X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=90e2bdca18e373c18990f276e241693d08f6bc0f;hp=42f411cb720566c965af9b5e238a8f483f1ca53d;hb=186cc3cb513f2387959888d896dbf67b250a9035;hpb=c6b9d35ed9361e4defab9762a7480d5126405ae9 diff --git a/menu.c b/menu.c index 42f411c..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]; } @@ -682,12 +679,12 @@ static int menu_search (MUTTMENU * menu, int op) char buf[SHORT_STRING]; if (op != OP_SEARCH_NEXT && op != OP_SEARCH_OPPOSITE) { - strfcpy (buf, menu->searchBuf ? menu->searchBuf : "", sizeof (buf)); + m_strcpy(buf, sizeof(buf), NONULL(menu->searchBuf)); if (mutt_get_field ((op == OP_SEARCH) ? _("Search for: ") : _("Reverse search for: "), buf, sizeof (buf), M_CLEAR) != 0 || !buf[0]) return (-1); - str_replace (&menu->searchBuf, buf); + m_strreplace(&menu->searchBuf, buf); menu->searchDir = (op == OP_SEARCH) ? M_SEARCH_DOWN : M_SEARCH_UP; } else { @@ -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; }