Commit c7c3363b c7c3363bb5358579edcf6fe59d17370c7a761490 by Sergey Poznyakoff

Minor fix in the help string.

1 parent 0c819952
...@@ -29,7 +29,7 @@ static char args_doc[] = N_("[arg...]"); ...@@ -29,7 +29,7 @@ static char args_doc[] = N_("[arg...]");
29 static struct argp_option options[] = { 29 static struct argp_option options[] = {
30 {"compile", 'c', NULL, 0, N_("print C compiler flags to compile with"), 0}, 30 {"compile", 'c', NULL, 0, N_("print C compiler flags to compile with"), 0},
31 {"link", 'l', NULL, 0, 31 {"link", 'l', NULL, 0,
32 N_("print libraries to link with. Possible arguments are: auth, guile, all," 32 N_("print libraries to link with. Possible arguments are: auth, guile, all, "
33 "mbox, mh, maildir, imap, pop"), 0}, 33 "mbox, mh, maildir, imap, pop"), 0},
34 {"info", 'i', NULL, 0, 34 {"info", 'i', NULL, 0,
35 N_("print a list of configuration options used to build mailutils. If arguments " 35 N_("print a list of configuration options used to build mailutils. If arguments "
......
...@@ -54,7 +54,7 @@ static struct argp_option options[] = { ...@@ -54,7 +54,7 @@ static struct argp_option options[] = {
54 N_("Set the mhl filter to preprocess the body of the message being replied")}, 54 N_("Set the mhl filter to preprocess the body of the message being replied")},
55 {"form", ARG_FORM, N_("FILE"), 0, N_("Read format from given file")}, 55 {"form", ARG_FORM, N_("FILE"), 0, N_("Read format from given file")},
56 {"format", ARG_FORMAT, N_("BOOL"), OPTION_ARG_OPTIONAL, 56 {"format", ARG_FORMAT, N_("BOOL"), OPTION_ARG_OPTIONAL,
57 N_("Include a copy of the message being replied. The message will be processed either using the default filter \"mhl.reply\", or using the filter specified by --filter option.") }, 57 N_("Include a copy of the message being replied. The message will be processed using either the default filter \"mhl.reply\", or the filter specified by --filter option.") },
58 {"inplace", ARG_INPLACE, N_("BOOL"), OPTION_ARG_OPTIONAL, 58 {"inplace", ARG_INPLACE, N_("BOOL"), OPTION_ARG_OPTIONAL,
59 N_("* Annotate the message in place")}, 59 N_("* Annotate the message in place")},
60 {"query", ARG_QUERY, N_("BOOL"), OPTION_ARG_OPTIONAL, 60 {"query", ARG_QUERY, N_("BOOL"), OPTION_ARG_OPTIONAL,
......