* main.c (argument_table): Add missing descriptions.

This commit is contained in:
Pavel Roskin 2002-09-19 06:29:25 +00:00
parent 7d2f7d94dd
commit d12a6c2eb6
2 changed files with 49 additions and 44 deletions

View File

@ -1,5 +1,7 @@
2002-09-19 Pavel Roskin <proski@gnu.org> 2002-09-19 Pavel Roskin <proski@gnu.org>
* main.c (argument_table): Add missing descriptions.
* main.c [NATIVE_WIN32]: Remove -S option, it's useless. * main.c [NATIVE_WIN32]: Remove -S option, it's useless.
* main.c (print_mc_usage): Use poptPrintHelp() instead of * main.c (print_mc_usage): Use poptPrintHelp() instead of

View File

@ -2208,10 +2208,12 @@ static const struct poptOption argument_table [] = {
{"ftplog", 'l', POPT_ARG_STRING, NULL, 'l', {"ftplog", 'l', POPT_ARG_STRING, NULL, 'l',
N_("Log ftp dialog to specified file")}, N_("Log ftp dialog to specified file")},
#ifdef WITH_SMBFS #ifdef WITH_SMBFS
{ "debuglevel", 'D', POPT_ARG_STRING, NULL, 'D'}, {"debuglevel", 'D', POPT_ARG_STRING, NULL, 'D',
N_("Set debug level")},
#endif #endif
#endif #endif
{ "libdir", 'f', POPT_ARG_NONE, NULL, 'f' }, {"libdir", 'f', POPT_ARG_NONE, NULL, 'f',
N_("Print configured paths")},
{"nocolor", 'b', POPT_ARG_NONE, &disable_colors, 0, {"nocolor", 'b', POPT_ARG_NONE, &disable_colors, 0,
N_("Requests to run in black and white")}, N_("Requests to run in black and white")},
{"nomouse", 'd', POPT_ARG_NONE, NULL, 'd', {"nomouse", 'd', POPT_ARG_NONE, NULL, 'd',
@ -2219,7 +2221,8 @@ static const struct poptOption argument_table [] = {
#ifdef HAVE_SUBSHELL_SUPPORT #ifdef HAVE_SUBSHELL_SUPPORT
{"nosubshell", 'u', POPT_ARG_NONE, NULL, 'u', {"nosubshell", 'u', POPT_ARG_NONE, NULL, 'u',
N_("Disables subshell support")}, N_("Disables subshell support")},
{ "forceexec", 'r', POPT_ARG_NONE, &force_subshell_execution,0 }, {"forceexec", 'r', POPT_ARG_NONE, &force_subshell_execution, 0,
N_("Force subshell execution")},
#endif #endif
{"printwd", 'P', POPT_ARG_NONE, &print_last_wd, 0, {"printwd", 'P', POPT_ARG_NONE, &print_last_wd, 0,
N_("Prints working directory at program exit")}, N_("Prints working directory at program exit")},