talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 546b18b9f52a90237ceed87efd971b0b19b642cf
parent 2b22a38de42103e9434a050b0dedab4b7851af2e
Author: Paul <paul@claws-mail.org>
Date:   Wed, 23 May 2018 18:10:46 +0100

fix quoting in reply to format=flowed message

Diffstat:
Msrc/procmime.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/procmime.c b/src/procmime.c @@ -293,7 +293,8 @@ static int procmime_fclose(FILE *fp) gint llen = 0; \ strretchomp(lastline); \ llen = strlen(lastline); \ - if (lastline[llen-1] == ' ' && strcmp(lastline,"-- ")) { \ + if (lastline[llen-1] == ' ' && strcmp(lastline,"-- ") && \ + strcmp(lastline,"> ")) { \ /* this is flowed */ \ if (delsp) \ lastline[llen-1] = '\0'; \