* src/getargs.c (longopts): --debug' is -t', not `-d'.

This commit is contained in:
Akim Demaille
2001-09-29 15:32:36 +00:00
parent ab30845981
commit d9af6cc62f
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2001-09-29 Akim Demaille <akim@epita.fr>
* src/getargs.c (longopts): `--debug' is `-t', not `-d'.
2001-09-28 Akim Demaille <akim@epita.fr> 2001-09-28 Akim Demaille <akim@epita.fr>
* tests/testsuite.at: Update to newer Autotest. * tests/testsuite.at: Update to newer Autotest.

View File

@@ -50,7 +50,7 @@ static struct option longopts[] =
/* Parser. */ /* Parser. */
{"skeleton", required_argument, 0, 'S'}, {"skeleton", required_argument, 0, 'S'},
{"debug", no_argument, 0, 'd'}, {"debug", no_argument, 0, 't'},
{"locations", no_argument, &locations_flag, 1}, {"locations", no_argument, &locations_flag, 1},
/* was 'a'; apparently unused -wjh */ /* was 'a'; apparently unused -wjh */
{"name-prefix", required_argument, 0, 'p'}, {"name-prefix", required_argument, 0, 'p'},
@@ -183,7 +183,7 @@ getargs (int argc, char *argv[])
exit (0); exit (0);
case 'g': case 'g':
/* Here, the -g and --graph=FILE options are differentiated. */ /* Here, the -g and --graph=FILE options are differentiated. */
graph_flag = 1; graph_flag = 1;
spec_graph_file = optarg; spec_graph_file = optarg;
break; break;