mutt stable branch with some hacks
0
fork

Configure Feed

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

Fix documentation for DT_MAGIC types. (closes #3845)

With the rename of M_ to MUTT_, the documentation generator in
makedoc.c needed to be adjusted for the new prefix size.

Thanks to Damien Riegel for the suggested fix.

+1 -1
+1 -1
doc/makedoc.c
··· 506 506 case DT_MAGIC: 507 507 { 508 508 /* heuristic! */ 509 - strncpy (t, s + 2, l); 509 + strncpy (t, s + 5, l); 510 510 for (; *t; t++) *t = tolower ((unsigned char) *t); 511 511 break; 512 512 }