X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=notmuch-show.c;h=9267d022584b911cfdd6c47dfab2e4da9b2af008;hb=d5b4d950245605b84c56ce991fa3c59a073a70e5;hp=3ac29597430177b345729e769e24f2e18f39a14b;hpb=61ff61cc2cb12ecc5020477bf8f7c1b4d31f953a;p=notmuch diff --git a/notmuch-show.c b/notmuch-show.c index 3ac29597..9267d022 100644 --- a/notmuch-show.c +++ b/notmuch-show.c @@ -456,7 +456,6 @@ format_part_content_text (GMimeObject *part) { GMimeContentDisposition *disposition = g_mime_object_get_content_disposition (part); GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part)); - GMimeStream *stream_stdout = g_mime_stream_file_new (stdout); printf (", Content-type: %s\n", g_mime_content_type_to_string (content_type)); @@ -471,6 +470,7 @@ format_part_content_text (GMimeObject *part) if (g_mime_content_type_is_type (content_type, "text", "*") && !g_mime_content_type_is_type (content_type, "text", "html")) { + GMimeStream *stream_stdout = g_mime_stream_file_new (stdout); g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE); show_text_part_content (part, stream_stdout); g_object_unref(stream_stdout);