projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2488a9
)
cli/show: remove unused raw member from show parameters struct
author
Jani Nikula
<jani@nikula.org>
Fri, 6 Jan 2017 20:14:43 +0000
(22:14 +0200)
committer
David Bremner
<david@tethera.net>
Fri, 10 Mar 2017 11:47:48 +0000
(07:47 -0400)
The raw member has been unused since
b1130bc71c02
("show: Convert raw
format to the new self-recursive style, properly support interior
parts"). Good riddance. No functional changes.
notmuch-client.h
patch
|
blob
|
history
notmuch-show.c
patch
|
blob
|
history
diff --git
a/notmuch-client.h
b/notmuch-client.h
index 1099122426afc9267a14219d26da2cbde0615c31..7a674873d5985b122a6ee99cf1f2861e6faac4a2 100644
(file)
--- a/
notmuch-client.h
+++ b/
notmuch-client.h
@@
-83,7
+83,6
@@
typedef struct notmuch_show_params {
notmuch_bool_t entire_thread;
notmuch_bool_t omit_excluded;
notmuch_bool_t output_body;
- notmuch_bool_t raw;
int part;
notmuch_crypto_t crypto;
notmuch_bool_t include_html;
diff --git
a/notmuch-show.c
b/notmuch-show.c
index 10247231fbfa77cfaac6223d4321b5f7a6fa17bd..ef675b4ded411e5db31b83fff86b740e7b73572c 100644
(file)
--- a/
notmuch-show.c
+++ b/
notmuch-show.c
@@
-1114,7
+1114,6
@@
notmuch_show_command (notmuch_config_t *config, int argc, char *argv[])
format = &format_raw;
/* raw format only supports single message display */
single_message = TRUE;
- params.raw = TRUE;
break;
}