summaryrefslogtreecommitdiff
path: root/src/getargs.c
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2012-10-26 16:33:20 +0200
committerAkim Demaille <akim@lrde.epita.fr>2012-10-26 16:33:20 +0200
commit71cb558dfe0f9c80e697308a5084de3b9926ee9c (patch)
treefba151ef4aeaf136997219a4564cb27f742b8301 /src/getargs.c
parentead713a1767e741f7e5f79d7dc949c0ea837c173 (diff)
parentbb8674a53789875e36d2eee5aacc42b1bc0c2889 (diff)
downloadbison-71cb558dfe0f9c80e697308a5084de3b9926ee9c.tar.gz
Merge branch 'branch-2.6' into maint
* origin/branch-2.6: regen yacc.c: do not define location support when not using locations maint: be compilable with GCC 4.0 tests: address a warning from GCC 4.4 tests: don't use options that Clang does not support tests: restore the tests on -Werror regen parse-gram: update the Bison interface fix comment
Diffstat (limited to 'src/getargs.c')
-rw-r--r--src/getargs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/getargs.c b/src/getargs.c
index 56d9724d..226e6de0 100644
--- a/src/getargs.c
+++ b/src/getargs.c
@@ -49,7 +49,7 @@
#include "quote.h"
#include "uniqstr.h"
-bool debug_flag;
+bool debug;
bool defines_flag;
bool graph_flag;
bool xml_flag;
@@ -665,7 +665,7 @@ getargs (int argc, char *argv[])
break;
case 't':
- debug_flag = true;
+ debug = true;
break;
case 'v':