Commit 8f2e2f1f 8f2e2f1fb926ffda9cf8ea264c391aae212e43ab by Sergey Poznyakoff

Bugfix.

* mu/filter.c (filter_options): Add missing arguments.
* mu/flt2047.c (flt2047_options): Likewise.
1 parent e105df67
......@@ -29,7 +29,7 @@ static char filter_args_doc[] = N_("[OPTIONS] NAME");
static struct argp_option filter_options[] = {
{ "encode", 'e', NULL, 0, N_("encode the input (default)") },
{ "decode", 'd', NULL, 0, N_("decode the input") },
{ "line-length", 'l', NULL, 0, N_("limit output line length") },
{ "line-length", 'l', N_("NUMBER"), 0, N_("limit output line length") },
{ "newline", 'n', NULL, 0, N_("print additional newline") },
{ NULL }
};
......
......@@ -30,8 +30,10 @@ static struct argp_option flt2047_options[] = {
{ "encode", 'e', NULL, 0, N_("encode the input (default)") },
{ "decode", 'd', NULL, 0, N_("decode the input") },
{ "newline", 'n', NULL, 0, N_("print additional newline") },
{ "charset", 'c', NULL, 0, N_("set charset (default: iso-8859-1)") },
{ "encoding", 'E', NULL, 0, N_("set encoding (default: quoted-printable)") },
{ "charset", 'c', N_("NAME"), 0,
N_("set charset (default: iso-8859-1)") },
{ "encoding", 'E', N_("NAME"), 0,
N_("set encoding (default: quoted-printable)") },
{ NULL }
};
......