summaryrefslogtreecommitdiffstats
path: root/copy.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-05-11 14:43:19 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-05-11 14:43:19 +0000
commit6bb7a72b0e201f3ad40eb901c403c2e1cbd9e077 (patch)
tree21fb400e4e4ead41e95a82fb2936076687867770 /copy.c
parent3332adb88967ca1e3d6edaa4968ccbe25dd6ec44 (diff)
Add experimental support for text/plain; format=flowed.
Diffstat (limited to 'copy.c')
-rw-r--r--copy.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/copy.c b/copy.c
index 7e590838..a650add9 100644
--- a/copy.c
+++ b/copy.c
@@ -432,7 +432,12 @@ _mutt_copy_message (FILE *fpout, FILE *fpin, HEADER *hdr, BODY *body,
long new_offset = -1;
if (flags & M_CM_PREFIX)
- _mutt_make_string (prefix, sizeof (prefix), NONULL (Prefix), Context, hdr, 0);
+ {
+ if (option (OPTTEXTFLOWED))
+ strfcpy (prefix, ">", sizeof (prefix));
+ else
+ _mutt_make_string (prefix, sizeof (prefix), NONULL (Prefix), Context, hdr, 0);
+ }
if ((flags & M_CM_NOHEADER) == 0)
{