]> git.saurik.com Git - bison.git/commitdiff
* src/getargs.c (longopts): `--debug' is `-t', not `-d'.
authorAkim Demaille <akim@epita.fr>
Sat, 29 Sep 2001 15:32:36 +0000 (15:32 +0000)
committerAkim Demaille <akim@epita.fr>
Sat, 29 Sep 2001 15:32:36 +0000 (15:32 +0000)
ChangeLog
src/getargs.c

index 84663ca9af8a9d85148ac4e99be396003900a65a..c4f4ddfbed6772342b455dde8b01db32ecb7990c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * tests/testsuite.at: Update to newer Autotest.
index 4bcd3775634694d9e83828ff2a8833ece1965484..4348b68f2acc1c781f9c772ac67b49e5cb4e8d55 100644 (file)
@@ -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;