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"); ...@@ -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
......