X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=52547deba533aaf4df440d1f26a0df79059d365d;hp=d8f2baf3c47a7e4fb7c0e74156e75c8384150e42;hb=21595f98b7c8132f99abb9fee60ecdce31fc980f;hpb=8e037c67a88cb4680c4391134c578e3b55a80f8a diff --git a/menu.c b/menu.c index d8f2baf..52547de 100644 --- a/menu.c +++ b/menu.c @@ -12,6 +12,8 @@ #endif #include +#include +#include #include "mutt.h" #include "enter.h" @@ -24,9 +26,6 @@ #include "imap.h" #endif -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" #include #include @@ -39,10 +38,10 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color) { wchar_t wc; size_t k; - size_t n = str_len ((char *) s); + 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) @@ -158,7 +157,7 @@ void menu_pad_string (char *s, size_t n) cols = COLS - shift - SidebarWidth; else cols = COLS - shift; - mutt_format_string (tmpbuf, n, cols, cols, 0, ' ', s, str_len (s), 1); + mutt_format_string (tmpbuf, n, cols, cols, 0, ' ', s, m_strlen(s), 1); tmpbuf[n - 1] = 0; snprintf (s, n, "%s", tmpbuf); /* overkill */ p_delete(&tmpbuf); @@ -644,7 +643,7 @@ static int menu_search_generic (MUTTMENU * m, regex_t * re, int n) MUTTMENU *mutt_new_menu (void) { - MUTTMENU *p = (MUTTMENU *) mem_calloc (1, sizeof (MUTTMENU)); + MUTTMENU *p = p_new(MUTTMENU, 1); p->current = 0; p->top = 0;