From: ak1 Date: Wed, 23 Feb 2005 19:55:49 +0000 (+0000) Subject: git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@83 e385b8ad-14ed-0310-8656-cc95a2468c6d X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=1dda4d26968f6fac1a3946180850b4b3ac0c9a1b;ds=sidebyside git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@83 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/ChangeLog.mutt-ng b/ChangeLog.mutt-ng index 5a089e4..4116dc7 100644 --- a/ChangeLog.mutt-ng +++ b/ChangeLog.mutt-ng @@ -2,8 +2,8 @@ Changes specific to mutt-ng: 2005-02-23: * Integrated assume_charset patch from http://www.emaillab.org/mutt/download15.html.en - * Integrated patch bei Rocco Rutte to correct minor bugs - * fixed pager line at the bottom in the sidebar + * Integrated patch by Rocco Rutte to correct minor bugs + * Fixed huge multibyte handling fuckup (was I drunk?!) 2005-02-22: * Merged mutt changes diff --git a/sidebar.c b/sidebar.c index 23abab9..e1bec5d 100644 --- a/sidebar.c +++ b/sidebar.c @@ -208,7 +208,7 @@ int draw_sidebar(int menu) { /* draw the divider */ - for ( ; lines < LINES-2-(menu != MENU_PAGER); lines++ ) { + for ( ; lines < LINES-1-(menu != MENU_PAGER); lines++ ) { move(lines, SidebarWidth - 1); addch('|'); #ifndef USE_SLANG_CURSES @@ -249,7 +249,7 @@ int draw_sidebar(int menu) { lines++; } SETCOLOR(MT_COLOR_NORMAL); - for ( ; lines < LINES - 2 - (menu != MENU_PAGER); lines++ ) { + for ( ; lines < LINES - 1 - (menu != MENU_PAGER); lines++ ) { int i = 0; move( lines, 0 ); for ( ; i < SidebarWidth - 1; i++ )