mutt stable branch with some hacks
0
fork

Configure Feed

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

merge stable

+7
+7
pager.c
··· 868 868 { 869 869 if (!found) 870 870 { 871 + /* Abort if we fill up chunks. 872 + * Yes, this really happened. See #3888 */ 873 + if (lineInfo[n].chunks == SHRT_MAX) 874 + { 875 + null_rx = 0; 876 + break; 877 + } 871 878 if (++(lineInfo[n].chunks) > 1) 872 879 safe_realloc (&(lineInfo[n].syntax), 873 880 (lineInfo[n].chunks) * sizeof (struct syntax_t));