From: Rocco Rutte Date: Mon, 15 Jun 2009 20:05:31 +0000 (+0200) Subject: Unbreak header weeding for message/rfc822 parts. Closes #3265. X-Git-Tag: mutt-1-5-21-rel~240 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2381a8f6f6314aea03573e3f0016f7ab985726bb;p=mutt Unbreak header weeding for message/rfc822 parts. Closes #3265. --- diff --git a/ChangeLog b/ChangeLog index 970d6f88..b1f150d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2009-06-15 19:59 +0200 Rocco Rutte (b5ed5d96c775) + + * init.c, lib.c, lib.h: Print timestamps in debug files. Closes #3263. + +2009-06-15 19:57 +0200 Rocco Rutte (76b1e3721c7e) + + * ChangeLog, doc/manual.xml.head, doc/muttrc.man.head: bind: Clarify + function argument usage + 2009-06-15 19:51 +0200 Rocco Rutte (6eadedb1f6c0) * doc/manual.xml.head, init.h, url.c: Fixup URL parser diff --git a/handler.c b/handler.c index 57dab0f4..c11a6fbd 100644 --- a/handler.c +++ b/handler.c @@ -1090,7 +1090,7 @@ static int message_handler (BODY *a, STATE *s) mutt_copy_hdr (s->fpin, s->fpout, off_start, b->parts->offset, (((s->flags & M_WEED) || ((s->flags & (M_DISPLAY|M_PRINTING)) && option (OPTWEED))) ? (CH_WEED | CH_REORDER) : 0) | (s->prefix ? CH_PREFIX : 0) | CH_DECODE | CH_FROM | - (s->flags & M_DISPLAY) ? CH_DISPLAY : 0, s->prefix); + ((s->flags & M_DISPLAY) ? CH_DISPLAY : 0), s->prefix); if (s->prefix) state_puts (s->prefix, s);