X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-reply.c;h=ab15650827f0a30c0c9aaf89b0734f398e8b5b21;hp=064d27e08b06089eade9672a60fcf8ff7a1fc425;hb=25c66663f87ba42bfcd78b32862bc9e1067ed82e;hpb=dcdb8430945e6323d78997ce47639eebc683c6d3 diff --git a/notmuch-reply.c b/notmuch-reply.c index 064d27e0..ab156508 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -26,14 +26,13 @@ static void reply_part (GMimeObject *part, - unused (int *part_count), - unused (int first)); + unused (int *part_count)); static const notmuch_show_format_t format_reply = { NULL, NULL, NULL, NULL, NULL, NULL, - NULL, reply_part, NULL, NULL, + NULL, reply_part, NULL, NULL, NULL, NULL, NULL, NULL }; @@ -87,8 +86,7 @@ show_reply_headers (GMimeMessage *message) static void reply_part (GMimeObject *part, - unused (int *part_count), - unused (int first)) + unused (int *part_count)) { GMimeContentDisposition *disposition; GMimeContentType *content_type; @@ -463,6 +461,8 @@ notmuch_reply_format_default(void *ctx, notmuch_config_t *config, notmuch_query_ const char *subject, *from_addr = NULL; const char *in_reply_to, *orig_references, *references; const notmuch_show_format_t *format = &format_reply; + notmuch_show_params_t params; + params.part = -1; for (messages = notmuch_query_search_messages (query); notmuch_messages_valid (messages); @@ -522,7 +522,7 @@ notmuch_reply_format_default(void *ctx, notmuch_config_t *config, notmuch_query_ notmuch_message_get_header (message, "from")); show_message_body (notmuch_message_get_filename (message), - format); + format, ¶ms); notmuch_message_destroy (message); }