X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=08e1fb2fd5ce8bc7e8267439f3d408d3a7a84d90;hp=ab3ce23200d1c1b6e4b297a4fe4cbcb35843ca7f;hb=a8477ebaa09990b3688164cbe5cf661c4189541d;hpb=96d53ff49c308769efbf708e1e65819077cb7af6 diff --git a/menu.c b/menu.c index ab3ce23..08e1fb2 100644 --- a/menu.c +++ b/menu.c @@ -1,9 +1,7 @@ /* * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins - * * Parts of it were written/modified by: - * Nico Golde - * + * * This file is part of mutt-ng, see http://www.muttng.org/. * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. @@ -38,7 +36,7 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color) { wchar_t wc; size_t k; - size_t n = mutt_strlen ((char *) s); + size_t n = str_len ((char *) s); mbstate_t mbstate; memset (&mbstate, 0, sizeof (mbstate)); @@ -157,7 +155,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, mutt_strlen (s), 1); + mutt_format_string (tmpbuf, n, cols, cols, 0, ' ', s, str_len (s), 1); tmpbuf[n - 1] = 0; snprintf (s, n, "%s", tmpbuf); /* overkill */ FREE (&tmpbuf); @@ -169,8 +167,6 @@ void menu_redraw_full (MUTTMENU * menu) /* clear() doesn't optimize screen redraws */ move (0, 0); clrtobot (); - - if (!option(OPTMBOXPANE)) SidebarWidth=0; if (option (OPTHELP)) { SETCOLOR (MT_COLOR_STATUS); @@ -207,7 +203,6 @@ void menu_redraw_index (MUTTMENU * menu) char buf[STRING]; int i; - if (!option(OPTMBOXPANE)) SidebarWidth=0; sidebar_draw (1); for (i = menu->top; i < menu->top + menu->pagelen; i++) { if (i < menu->max) { @@ -322,8 +317,6 @@ void menu_redraw_current (MUTTMENU * menu) menu_make_entry (buf, sizeof (buf), menu, menu->current); menu_pad_string (buf, sizeof (buf)); - if (!option(OPTMBOXPANE)) SidebarWidth=0; - if (option (OPTARROWCURSOR)) { int attr = menu->color (menu->current);