mutt stable branch with some hacks
0
fork

Configure Feed

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

Fix a few indenting issues.

These are mostly the result of making the formatting changes commit
after the indent changes commit.

+17 -17
+4 -4
attach.c
··· 742 742 /* recv mode */ 743 743 744 744 if (hdr && 745 - m->hdr && 746 - m->encoding != ENCBASE64 && 747 - m->encoding != ENCQUOTEDPRINTABLE && 748 - mutt_is_message_type(m->type, m->subtype)) 745 + m->hdr && 746 + m->encoding != ENCBASE64 && 747 + m->encoding != ENCQUOTEDPRINTABLE && 748 + mutt_is_message_type(m->type, m->subtype)) 749 749 { 750 750 /* message type attachments are written to mail folders. */ 751 751
+8 -8
browser.c
··· 231 231 232 232 snprintf (fn, sizeof (fn), "%s%s", s, 233 233 folder->ff->local ? 234 - (S_ISLNK (folder->ff->mode) ? 235 - "@" : 236 - (S_ISDIR (folder->ff->mode) ? 237 - "/" : 238 - ((folder->ff->mode & S_IXUSR) != 0 ? 239 - "*" : 240 - ""))) : 241 - ""); 234 + (S_ISLNK (folder->ff->mode) ? 235 + "@" : 236 + (S_ISDIR (folder->ff->mode) ? 237 + "/" : 238 + ((folder->ff->mode & S_IXUSR) != 0 ? 239 + "*" : 240 + ""))) : 241 + ""); 242 242 243 243 mutt_format_s (dest, destlen, fmt, fn); 244 244 break;
+2 -2
mime.h
··· 65 65 66 66 #define is_multipart(x) \ 67 67 ((x)->type == TYPEMULTIPART \ 68 - || ((x)->type == TYPEMESSAGE && (!strcasecmp((x)->subtype, "rfc822") \ 69 - || !strcasecmp((x)->subtype, "news")))) 68 + || ((x)->type == TYPEMESSAGE && (!strcasecmp((x)->subtype, "rfc822") \ 69 + || !strcasecmp((x)->subtype, "news")))) 70 70 71 71 extern const char *BodyTypes[]; 72 72 extern const char *BodyEncodings[];
+1 -1
pager.c
··· 76 76 } 77 77 78 78 #define CHECK_ATTACH \ 79 - if (option(OPTATTACHMSG)) \ 79 + if (option(OPTATTACHMSG)) \ 80 80 { \ 81 81 mutt_flushinp (); \ 82 82 mutt_error _(Function_not_permitted_in_attach_message_mode); \
+2 -2
pgp.c
··· 825 825 crypt_current_time (s, "PGP"); 826 826 827 827 if ((thepid = pgp_invoke_verify (NULL, &pgpout, NULL, 828 - -1, -1, fileno(pgperr), 829 - tempfile, sigfile)) != -1) 828 + -1, -1, fileno(pgperr), 829 + tempfile, sigfile)) != -1) 830 830 { 831 831 if (pgp_copy_checksig (pgpout, s->fpout) >= 0) 832 832 badsig = 0;