Bugfix.
* mu/filter.c (filter_options): Add missing arguments. * mu/flt2047.c (flt2047_options): Likewise.
Showing
2 changed files
with
5 additions
and
3 deletions
... | @@ -29,7 +29,7 @@ static char filter_args_doc[] = N_("[OPTIONS] NAME"); | ... | @@ -29,7 +29,7 @@ static char filter_args_doc[] = N_("[OPTIONS] NAME"); |
29 | static struct argp_option filter_options[] = { | 29 | static struct argp_option filter_options[] = { |
30 | { "encode", 'e', NULL, 0, N_("encode the input (default)") }, | 30 | { "encode", 'e', NULL, 0, N_("encode the input (default)") }, |
31 | { "decode", 'd', NULL, 0, N_("decode the input") }, | 31 | { "decode", 'd', NULL, 0, N_("decode the input") }, |
32 | { "line-length", 'l', NULL, 0, N_("limit output line length") }, | 32 | { "line-length", 'l', N_("NUMBER"), 0, N_("limit output line length") }, |
33 | { "newline", 'n', NULL, 0, N_("print additional newline") }, | 33 | { "newline", 'n', NULL, 0, N_("print additional newline") }, |
34 | { NULL } | 34 | { NULL } |
35 | }; | 35 | }; | ... | ... |
... | @@ -30,8 +30,10 @@ static struct argp_option flt2047_options[] = { | ... | @@ -30,8 +30,10 @@ static struct argp_option flt2047_options[] = { |
30 | { "encode", 'e', NULL, 0, N_("encode the input (default)") }, | 30 | { "encode", 'e', NULL, 0, N_("encode the input (default)") }, |
31 | { "decode", 'd', NULL, 0, N_("decode the input") }, | 31 | { "decode", 'd', NULL, 0, N_("decode the input") }, |
32 | { "newline", 'n', NULL, 0, N_("print additional newline") }, | 32 | { "newline", 'n', NULL, 0, N_("print additional newline") }, |
33 | { "charset", 'c', NULL, 0, N_("set charset (default: iso-8859-1)") }, | 33 | { "charset", 'c', N_("NAME"), 0, |
34 | { "encoding", 'E', NULL, 0, N_("set encoding (default: quoted-printable)") }, | 34 | N_("set charset (default: iso-8859-1)") }, |
35 | { "encoding", 'E', N_("NAME"), 0, | ||
36 | N_("set encoding (default: quoted-printable)") }, | ||
35 | { NULL } | 37 | { NULL } |
36 | }; | 38 | }; |
37 | 39 | ... | ... |
-
Please register or sign in to post a comment