diff options
author | Larry Ewing <lewing@ximian.com> | 2003-12-11 09:00:08 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2003-12-11 09:00:08 +0800 |
commit | 576a5e0852a95617a9e86387b7e2592f2d8d51ce (patch) | |
tree | cd69b82b7de7c1b3293fc13e4df0fff631c1318a /mail | |
parent | 61b53f116a44cf568e14da954168ff601af2afd6 (diff) | |
download | gsoc2013-evolution-576a5e0852a95617a9e86387b7e2592f2d8d51ce.tar.gz gsoc2013-evolution-576a5e0852a95617a9e86387b7e2592f2d8d51ce.tar.zst gsoc2013-evolution-576a5e0852a95617a9e86387b7e2592f2d8d51ce.zip |
add text/x-patch as a plain type.
2003-12-10 Larry Ewing <lewing@ximian.com>
* em-format-html.c: add text/x-patch as a plain type.
svn path=/trunk/; revision=23918
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/em-format-html.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 310042ee0e..dfe7aa34bc 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2003-12-10 Larry Ewing <lewing@ximian.com> + + * em-format-html.c: add text/x-patch as a plain type. + 2003-12-10 Jeffrey Stedfast <fejj@ximian.com> * em-migrate.c (get_local_store): Fixed a leak. diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 348c5ef653..fa7abad068 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1101,6 +1101,7 @@ static EMFormatHandler type_builtin_table[] = { { "image/x-xpixmap", (EMFormatFunc)efh_image }, { "text/enriched", (EMFormatFunc)efh_text_enriched }, { "text/plain", (EMFormatFunc)efh_text_plain }, + { "text/x-patch", (EMFormatFunc)efh_text_plain }, { "text/html", (EMFormatFunc)efh_text_html }, { "text/richtext", (EMFormatFunc)efh_text_enriched }, /*{ "text/ *", (EMFormatFunc)efh_text_plain },*/ |