X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=commands.c;h=d3ee54111d3fd82bb25102884225ca1b9c11918d;hp=83604ca465dad2fd3a0af4f1fc41626fd7f2e0c5;hb=dbb9a1e16d03a2d4664d6dc6a30c721b889d4982;hpb=4761fa78a6dfc9437caa6e6e0aac806e50e01c83 diff --git a/commands.c b/commands.c index 83604ca..d3ee541 100644 --- a/commands.c +++ b/commands.c @@ -19,10 +19,11 @@ #include +#include + #include "mutt.h" #include "enter.h" #include "recvattach.h" -#include "mutt_curses.h" #include "mutt_menu.h" #include "sort.h" #include "copy.h" @@ -854,7 +855,7 @@ void mutt_edit_content_type (HEADER * h, BODY * b, FILE * fp) return; /* clean up previous junk */ - mutt_free_parameter (&b->parameter); + parameter_delete(&b->parameter); p_delete(&b->subtype); mutt_parse_content_type (buf, b); @@ -891,14 +892,14 @@ void mutt_edit_content_type (HEADER * h, BODY * b, FILE * fp) b->force_charset |= charset_changed ? 1 : 0; - if (!is_multipart (b) && b->parts) + if (!is_multipart(b) && b->parts) mutt_free_body (&b->parts); if (!mutt_is_message_type (b->type, b->subtype) && b->hdr) { b->hdr->content = NULL; - mutt_free_header (&b->hdr); + header_delete(&b->hdr); } - if (fp && (is_multipart (b) || mutt_is_message_type (b->type, b->subtype))) + if (fp && (is_multipart(b) || mutt_is_message_type(b->type, b->subtype))) mutt_parse_part (fp, b); if (h) {