From d9af6cc62f0d050ab0a3e5b61842a3f2fa8e5d47 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Sat, 29 Sep 2001 15:32:36 +0000 Subject: [PATCH] * src/getargs.c (longopts): `--debug' is `-t', not `-d'. --- ChangeLog | 4 ++++ src/getargs.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 84663ca9..c4f4ddfb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-09-29 Akim Demaille + + * src/getargs.c (longopts): `--debug' is `-t', not `-d'. + 2001-09-28 Akim Demaille * tests/testsuite.at: Update to newer Autotest. diff --git a/src/getargs.c b/src/getargs.c index 4bcd3775..4348b68f 100644 --- a/src/getargs.c +++ b/src/getargs.c @@ -50,7 +50,7 @@ static struct option longopts[] = /* Parser. */ {"skeleton", required_argument, 0, 'S'}, - {"debug", no_argument, 0, 'd'}, + {"debug", no_argument, 0, 't'}, {"locations", no_argument, &locations_flag, 1}, /* was 'a'; apparently unused -wjh */ {"name-prefix", required_argument, 0, 'p'}, @@ -183,7 +183,7 @@ getargs (int argc, char *argv[]) exit (0); case 'g': - /* Here, the -g and --graph=FILE options are differentiated. */ + /* Here, the -g and --graph=FILE options are differentiated. */ graph_flag = 1; spec_graph_file = optarg; break; -- 2.50.0