From: Sergey Poznyakoff Date: Mon, 13 Mar 2006 09:52:05 +0000 (+0000) Subject: (argp_default_options): Consistently begin help messages with a lowercase letter. X-Git-Tag: cvs-readonly~2484 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=59737d835c4622ee24f2b79b50cd12ed28419386;p=gnulib.git (argp_default_options): Consistently begin help messages with a lowercase letter. --- diff --git a/lib/argp-parse.c b/lib/argp-parse.c index c3f1ad8c7..0813afc82 100644 --- a/lib/argp-parse.c +++ b/lib/argp-parse.c @@ -79,11 +79,11 @@ static volatile int _argp_hang; static const struct argp_option argp_default_options[] = { - {"help", '?', 0, 0, N_("Give this help list"), -1}, - {"usage", OPT_USAGE, 0, 0, N_("Give a short usage message"), 0}, - {"program-name",OPT_PROGNAME,N_("NAME"), OPTION_HIDDEN, N_("Set the program name"), 0}, + {"help", '?', 0, 0, N_("give this help list"), -1}, + {"usage", OPT_USAGE, 0, 0, N_("give a short usage message"), 0}, + {"program-name",OPT_PROGNAME,N_("NAME"), OPTION_HIDDEN, N_("set the program name"), 0}, {"HANG", OPT_HANG, N_("SECS"), OPTION_ARG_OPTIONAL | OPTION_HIDDEN, - N_("Hang for SECS seconds (default 3600)"), 0}, + N_("hang for SECS seconds (default 3600)"), 0}, {NULL, 0, 0, 0, NULL, 0} }; @@ -140,7 +140,7 @@ static const struct argp argp_default_argp = static const struct argp_option argp_version_options[] = { - {"version", 'V', 0, 0, N_("Print program version"), -1}, + {"version", 'V', 0, 0, N_("print program version"), -1}, {NULL, 0, 0, 0, NULL, 0} };