X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=eb19d5abeeca52ea86d43e661c3ff8a6850aa1d2;hp=54d36ddaad9bac8a0edb6adabdacee33a1674192;hb=8a17bff34ca04d10ef28a3d2d4b00343afd220e9;hpb=7f7a0be369840b290248e5b0302beb447fa1b3cd diff --git a/menu.c b/menu.c index 54d36dd..eb19d5a 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 @@ -41,7 +38,7 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color) size_t n = m_strlen((char *) s); mbstate_t mbstate; - memset (&mbstate, 0, sizeof (mbstate)); + p_clear(&mbstate, 1); while (*s) { if (*s < M_TREE_MAX) { if (do_color) @@ -140,7 +137,7 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color) static void menu_make_entry (char *s, int l, MUTTMENU * menu, int i) { if (menu->dialog) { - strncpy (s, menu->dialog[i], l); + m_strcpy(s, l, menu->dialog[i]); menu->current = -1; /* hide menubar */ } else @@ -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 { @@ -800,7 +797,7 @@ int mutt_menuLoop (MUTTMENU * menu) { int i = OP_NULL; - FOREVER { + for (;;) { if (option (OPTMENUCALLER)) { unset_option (OPTMENUCALLER); return OP_NULL; @@ -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;