diff options
author | Dan Winship <danw@src.gnome.org> | 2001-05-04 04:54:07 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-05-04 04:54:07 +0800 |
commit | 08e6ede22adccfa0eb798135113b3e74dae0fa8d (patch) | |
tree | bca33e8ab5b9a69463f1a9a88ce661ebe4d6d7d4 /mail/mail-format.c | |
parent | 7c553e6e5bb47c7b4b26f9bed147e7b7df234f96 (diff) | |
download | gsoc2013-evolution-08e6ede22adccfa0eb798135113b3e74dae0fa8d.tar.gz gsoc2013-evolution-08e6ede22adccfa0eb798135113b3e74dae0fa8d.tar.zst gsoc2013-evolution-08e6ede22adccfa0eb798135113b3e74dae0fa8d.zip |
#include <camel/camel-file-utils.h>
* message-list.c: #include <camel/camel-file-utils.h>
* mail-ops.c (get_folderinfo_get):
* subscribe-dialog.c (build_tree): Update for
camel_store_get_folder_info prototype change.
* mail-format.c (handle_text_plain_flowed): Improve more on the
fix from the other day: the first level of indentation adds blank
lines, but further levels don't...
svn path=/trunk/; revision=9660
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index 81766f6206..5e5975f211 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -978,14 +978,14 @@ handle_text_plain_flowed (char *buf, MailDisplay *md) mail_html_write (md->html, md->stream, "<font color=\"#%06x\">", citation_color); + if (br_pending) + br_pending--; } while (quoting > prevquoting) { mail_html_write (md->html, md->stream, "<blockquote>"); prevquoting++; } - if (br_pending) - br_pending--; while (quoting < prevquoting) { mail_html_write (md->html, md->stream, "</blockquote>"); @@ -994,6 +994,8 @@ handle_text_plain_flowed (char *buf, MailDisplay *md) if (quoting == 0) { mail_html_write (md->html, md->stream, "</font>\n"); + if (br_pending) + br_pending--; } } |