1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-20 06:46:50 +02:00

config: fix --terminate help display

There is no parameter
This commit is contained in:
Dirk-Jan C. Binnema 2021-11-02 22:25:43 +02:00
parent d5f41f8ddf
commit 7345edc21d

View File

@ -375,20 +375,30 @@ static GOptionGroup *
config_options_group_view() config_options_group_view()
{ {
GOptionGroup* og; GOptionGroup* og;
GOptionEntry entries[] = { GOptionEntry entries[] = {{"summary-len",
{"summary-len", 0, 0, G_OPTION_ARG_INT, &MU_CONFIG.summary_len, 0,
0,
G_OPTION_ARG_INT,
&MU_CONFIG.summary_len,
"use up to <n> lines for the summary, or 0 for none (0)", "use up to <n> lines for the summary, or 0 for none (0)",
"<len>"}, "<len>"},
{"terminate", 0, 0, G_OPTION_ARG_NONE, &MU_CONFIG.terminator, {"terminate",
0,
0,
G_OPTION_ARG_NONE,
&MU_CONFIG.terminator,
"terminate messages with ascii-0x07 (\\f, form-feed)", "terminate messages with ascii-0x07 (\\f, form-feed)",
"<term>"}, NULL},
{"format", 'o', 0, G_OPTION_ARG_STRING, &MU_CONFIG.formatstr, {"format",
"output format ('plain'(*), 'sexp')", "<format>"}, 'o',
{NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL} 0,
}; G_OPTION_ARG_STRING,
&MU_CONFIG.formatstr,
"output format ('plain'(*), 'sexp')",
"<format>"},
{NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL}};
og = g_option_group_new("view", "Options for the 'view' command", og = g_option_group_new("view", "Options for the 'view' command", "", NULL, NULL);
"", NULL, NULL);
g_option_group_add_entries(og, entries); g_option_group_add_entries(og, entries);
g_option_group_add_entries(og, crypto_option_entries()); g_option_group_add_entries(og, crypto_option_entries());