X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-show.c;h=ef675b4ded411e5db31b83fff86b740e7b73572c;hp=744b62727c26afed43e3685a160b2b1b52d29865;hb=33944a559a4ae7589347b7e7a3da5dd810a4c136;hpb=508b5c20fa38b17fa527af075857061f4ed81e2a diff --git a/notmuch-show.c b/notmuch-show.c index 744b6272..ef675b4d 100644 --- a/notmuch-show.c +++ b/notmuch-show.c @@ -1042,6 +1042,7 @@ notmuch_show_command (notmuch_config_t *config, int argc, char *argv[]) int format_sel = NOTMUCH_FORMAT_NOT_SPECIFIED; int exclude = EXCLUDE_TRUE; int entire_thread = ENTIRE_THREAD_DEFAULT; + notmuch_bool_t single_message; notmuch_opt_desc_t options[] = { { NOTMUCH_OPT_KEYWORD, &format_sel, "format", 'f', @@ -1080,6 +1081,9 @@ notmuch_show_command (notmuch_config_t *config, int argc, char *argv[]) if (params.crypto.decrypt) params.crypto.verify = TRUE; + /* specifying a part implies single message display */ + single_message = params.part >= 0; + if (format_sel == NOTMUCH_FORMAT_NOT_SPECIFIED) { /* if part was requested and format was not specified, use format=raw */ if (params.part >= 0) @@ -1108,11 +1112,8 @@ notmuch_show_command (notmuch_config_t *config, int argc, char *argv[]) break; case NOTMUCH_FORMAT_RAW: format = &format_raw; - /* If --format=raw specified without specifying part, we can only - * output single message, so set part=0 */ - if (params.part < 0) - params.part = 0; - params.raw = TRUE; + /* raw format only supports single message display */ + single_message = TRUE; break; } @@ -1177,9 +1178,9 @@ notmuch_show_command (notmuch_config_t *config, int argc, char *argv[]) sprinter = format->new_sprinter(config, stdout); /* If a single message is requested we do not use search_excludes. */ - if (params.part >= 0) + if (single_message) { ret = do_show_single (config, query, format, sprinter, ¶ms); - else { + } else { /* We always apply set the exclude flag. The * exclude=true|false option controls whether or not we return * threads that only match in an excluded message */