From: nion Date: Mon, 21 Mar 2005 16:30:48 +0000 (+0000) Subject: Nico Golde: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=2b583fe22af47338f7704d824c66d02dbc6b7d58;ds=sidebyside Nico Golde: - corrected little output mistake which i used for debugging git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@222 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/compose.c b/compose.c index 3b02b47..86004f2 100644 --- a/compose.c +++ b/compose.c @@ -1401,7 +1401,7 @@ int mutt_compose_menu (HEADER * msg, /* structure for new message */ compose_status_line (buf, sizeof (buf), menu, NONULL (ComposeFormat)); CLEARLINE (option (OPTSTATUSONTOP) ? 0 : LINES - 2); SETCOLOR (MT_COLOR_STATUS); - printw ("nnn%-*.*s", COLS, COLS, buf); + printw ("%-*.*s", COLS, COLS, buf); SETCOLOR (MT_COLOR_NORMAL); menu->redraw &= ~REDRAW_STATUS; }