mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
cli/show: move formatter structs closer to where they're needed
The formatter structs are only needed for the formatter array initialization. Move them closer to use. This also lets us drop some forward declarations. No functional changes.
This commit is contained in:
parent
f2160ae540
commit
8481372956
1 changed files with 25 additions and 42 deletions
|
@ -22,48 +22,6 @@
|
|||
#include "gmime-filter-reply.h"
|
||||
#include "sprinter.h"
|
||||
|
||||
static notmuch_status_t
|
||||
format_part_text (const void *ctx, sprinter_t *sp, mime_node_t *node,
|
||||
int indent, const notmuch_show_params_t *params);
|
||||
|
||||
static const notmuch_show_format_t format_text = {
|
||||
.new_sprinter = sprinter_text_create,
|
||||
.part = format_part_text,
|
||||
};
|
||||
|
||||
static notmuch_status_t
|
||||
format_part_sprinter_entry (const void *ctx, sprinter_t *sp, mime_node_t *node,
|
||||
int indent, const notmuch_show_params_t *params);
|
||||
|
||||
static const notmuch_show_format_t format_json = {
|
||||
.new_sprinter = sprinter_json_create,
|
||||
.part = format_part_sprinter_entry,
|
||||
};
|
||||
|
||||
static const notmuch_show_format_t format_sexp = {
|
||||
.new_sprinter = sprinter_sexp_create,
|
||||
.part = format_part_sprinter_entry,
|
||||
};
|
||||
|
||||
static notmuch_status_t
|
||||
format_part_mbox (const void *ctx, sprinter_t *sp, mime_node_t *node,
|
||||
int indent, const notmuch_show_params_t *params);
|
||||
|
||||
static const notmuch_show_format_t format_mbox = {
|
||||
.new_sprinter = sprinter_text_create,
|
||||
.part = format_part_mbox,
|
||||
};
|
||||
|
||||
static notmuch_status_t
|
||||
format_part_raw (unused (const void *ctx), sprinter_t *sp, mime_node_t *node,
|
||||
unused (int indent),
|
||||
unused (const notmuch_show_params_t *params));
|
||||
|
||||
static const notmuch_show_format_t format_raw = {
|
||||
.new_sprinter = sprinter_text_create,
|
||||
.part = format_part_raw,
|
||||
};
|
||||
|
||||
static const char *
|
||||
_get_tags_as_string (const void *ctx, notmuch_message_t *message)
|
||||
{
|
||||
|
@ -1007,6 +965,31 @@ enum {
|
|||
NOTMUCH_FORMAT_RAW
|
||||
};
|
||||
|
||||
static const notmuch_show_format_t format_json = {
|
||||
.new_sprinter = sprinter_json_create,
|
||||
.part = format_part_sprinter_entry,
|
||||
};
|
||||
|
||||
static const notmuch_show_format_t format_sexp = {
|
||||
.new_sprinter = sprinter_sexp_create,
|
||||
.part = format_part_sprinter_entry,
|
||||
};
|
||||
|
||||
static const notmuch_show_format_t format_text = {
|
||||
.new_sprinter = sprinter_text_create,
|
||||
.part = format_part_text,
|
||||
};
|
||||
|
||||
static const notmuch_show_format_t format_mbox = {
|
||||
.new_sprinter = sprinter_text_create,
|
||||
.part = format_part_mbox,
|
||||
};
|
||||
|
||||
static const notmuch_show_format_t format_raw = {
|
||||
.new_sprinter = sprinter_text_create,
|
||||
.part = format_part_raw,
|
||||
};
|
||||
|
||||
static const notmuch_show_format_t *formatters[] = {
|
||||
[NOTMUCH_FORMAT_JSON] = &format_json,
|
||||
[NOTMUCH_FORMAT_SEXP] = &format_sexp,
|
||||
|
|
Loading…
Reference in a new issue