cli/show: remove unused raw member from show parameters struct

The raw member has been unused since b1130bc71c ("show: Convert raw
format to the new self-recursive style, properly support interior
parts"). Good riddance. No functional changes.
This commit is contained in:
Jani Nikula 2017-01-06 22:14:43 +02:00 committed by David Bremner
parent b2488a925a
commit 33944a559a
2 changed files with 0 additions and 2 deletions

View file

@ -83,7 +83,6 @@ typedef struct notmuch_show_params {
notmuch_bool_t entire_thread; notmuch_bool_t entire_thread;
notmuch_bool_t omit_excluded; notmuch_bool_t omit_excluded;
notmuch_bool_t output_body; notmuch_bool_t output_body;
notmuch_bool_t raw;
int part; int part;
notmuch_crypto_t crypto; notmuch_crypto_t crypto;
notmuch_bool_t include_html; notmuch_bool_t include_html;

View file

@ -1114,7 +1114,6 @@ notmuch_show_command (notmuch_config_t *config, int argc, char *argv[])
format = &format_raw; format = &format_raw;
/* raw format only supports single message display */ /* raw format only supports single message display */
single_message = TRUE; single_message = TRUE;
params.raw = TRUE;
break; break;
} }