mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix sigwinch race in the index and menu processor.

Reset the SigWinch flag before the screen resize/reflow, not afterwards.

+2 -2
+1 -1
curs_main.c
··· 775 775 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM) 776 776 if (SigWinch) 777 777 { 778 + SigWinch = 0; 778 779 mutt_flushinp (); 779 780 mutt_resize_screen (); 780 - SigWinch = 0; 781 781 menu->top = 0; /* so we scroll the right amount */ 782 782 /* 783 783 * force a real complete redraw. clrtobot() doesn't seem to be able
+1 -1
menu.c
··· 1075 1075 #if defined (USE_SLANG_CURSES) || defined (HAVE_RESIZETERM) 1076 1076 if (SigWinch) 1077 1077 { 1078 - mutt_resize_screen (); 1079 1078 SigWinch = 0; 1079 + mutt_resize_screen (); 1080 1080 clearok(stdscr,TRUE);/*force complete redraw*/ 1081 1081 } 1082 1082 #endif