X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=editmsg.c;h=09f358f77c50c19f75aa3b49d42bf66c7fdae013;hp=f20445609e1248a303a571dceaa6adf0fcb16cfe;hb=819c071fa7efc8dffb4dd92f36f0111227ff692f;hpb=45528548fd2dddcbef9396b0589ec88d722766ee diff --git a/editmsg.c b/editmsg.c index f204456..09f358f 100644 --- a/editmsg.c +++ b/editmsg.c @@ -10,11 +10,11 @@ /* simple, editor-based message editing */ #include -#include +#include +#include #include "mutt.h" #include "copy.h" -#include "mx.h" /* * return value: @@ -61,8 +61,7 @@ static int edit_one_message (CONTEXT * ctx, HEADER * cur) } rc = mutt_append_message (&tmpctx, ctx, cur, 0, CH_NOLEN | - ((ctx->magic == M_MBOX - || ctx->magic == M_MMDF) ? 0 : CH_NOSTATUS)); + (ctx->magic == M_MBOX ? 0 : CH_NOSTATUS)); oerrno = errno; mx_close_mailbox (&tmpctx, NULL); @@ -92,7 +91,7 @@ static int edit_one_message (CONTEXT * ctx, HEADER * cur) goto bail; } - mutt_edit_file (NONULL (Editor), tmp); + mutt_edit_file(tmp); if ((rc = stat (tmp, &sb)) == -1) { mutt_error (_("Can't stat %s: %s"), tmp, strerror (errno)); @@ -124,14 +123,14 @@ static int edit_one_message (CONTEXT * ctx, HEADER * cur) } of = 0; - cf = ((tmpctx.magic == M_MBOX || tmpctx.magic == M_MMDF) ? 0 : CH_NOSTATUS); + cf = (tmpctx.magic == M_MBOX ? 0 : CH_NOSTATUS); if (fgets (buff, sizeof (buff), fp) && is_from (buff, NULL, 0, NULL)) { - if (tmpctx.magic == M_MBOX || tmpctx.magic == M_MMDF) + if (tmpctx.magic == M_MBOX) cf = CH_FROM | CH_FORCE_FROM; - } - else + } else { of = M_ADD_FROM; + } /* * XXX - we have to play games with the message flags to avoid @@ -165,8 +164,7 @@ static int edit_one_message (CONTEXT * ctx, HEADER * cur) mx_close_mailbox (&tmpctx, NULL); bail: - if (fp) - fclose (fp); + m_fclose(&fp); if (rc >= 0) unlink (tmp);