Update of /cvsroot/env-switcher/env-switcher/src
In directory sc8-pr-cvs1:/tmp/cvs-serv22316/src
Modified Files:
switcher.in
Log Message:
Minor fixes.
Index: switcher.in
===================================================================
RCS file: /cvsroot/env-switcher/env-switcher/src/switcher.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** switcher.in 15 Jan 2004 17:08:40 -0000 1.14
--- switcher.in 16 Jan 2004 15:08:25 -0000 1.15
***************
*** 60,63 ****
--- 60,64 ----
my $system_file_modified = 0;
my $switcher_silent = 0;
+ my $want_help = 0;
my $switcher_help = 0;
my $switcher_more_help = 0;
***************
*** 150,154 ****
\$ switcher <tag> --list # List all available <name> values for <tag>
! For more help, type \"switcher --more-help
";
}
--- 151,155 ----
\$ switcher <tag> --list # List all available <name> values for <tag>
! For more help, type \"switcher --more-help\"
";
}
***************
*** 1352,1356 ****
$switcher_silent = $clui_args->silent();
$switcher_help = $clui_args->help();
! $switcher_more_help = $clui_args->more_help();
if ($switcher_help || $switcher_more_help) {
$want_help = 1;
--- 1353,1357 ----
$switcher_silent = $clui_args->silent();
$switcher_help = $clui_args->help();
! $switcher_more_help = $clui_args->get("more-help");
if ($switcher_help || $switcher_more_help) {
$want_help = 1;
|