From 2b583fe22af47338f7704d824c66d02dbc6b7d58 Mon Sep 17 00:00:00 2001 From: nion Date: Mon, 21 Mar 2005 16:30:48 +0000 Subject: [PATCH] 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 --- compose.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1