X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=54d36ddaad9bac8a0edb6adabdacee33a1674192;hp=95d4f476b49d2a93005df3129579580ebb22231d;hb=ecaab35b973fbceb58b5ed174971c82762cc0199;hpb=1f2995420ee1612199ab8af9909159a2a8afbdab diff --git a/menu.c b/menu.c index 95d4f47..54d36dd 100644 --- a/menu.c +++ b/menu.c @@ -11,6 +11,10 @@ # include "config.h" #endif +#include +#include +#include + #include "mutt.h" #include "enter.h" #include "mutt_curses.h" @@ -22,24 +26,19 @@ #include "imap.h" #endif -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" #include #include #define SW (option(OPTMBOXPANE)?SidebarWidth:0) -extern int Charset_is_utf8; /* FIXME: bad modularisation */ - extern size_t UngetCount; 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)); @@ -152,16 +151,16 @@ void menu_pad_string (char *s, size_t n) { int shift = option (OPTARROWCURSOR) ? 3 : 0; int cols; - char *tmpbuf = mem_malloc (n); + char *tmpbuf = p_new(char, n); if (option (OPTMBOXPANE)) 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 */ - mem_free (&tmpbuf); + p_delete(&tmpbuf); } void menu_redraw_full (MUTTMENU * menu) @@ -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; @@ -660,16 +659,16 @@ void mutt_menuDestroy (MUTTMENU ** p) { int i; - mem_free (&(*p)->searchBuf); + p_delete(&(*p)->searchBuf); if ((*p)->dialog) { for (i = 0; i < (*p)->max; i++) - mem_free (&(*p)->dialog[i]); + p_delete(&(*p)->dialog[i]); - mem_free (&(*p)->dialog); + p_delete(&(*p)->dialog); } - mem_free (p); + p_delete(p); } #define M_SEARCH_UP 1