]> git.saurik.com Git - bison.git/blobdiff - src/getargs.c
* src/bison.simple: Remove YYERROR_VERBOSE using.
[bison.git] / src / getargs.c
index e3ffdb68feeb3221072424c6d5e560cc21b688fc..0951e581e95fb5abc3baa08d80074b154dfffd1a 100644 (file)
@@ -34,11 +34,13 @@ int no_lines_flag = 0;
 int no_parser_flag = 0;
 int token_table_flag = 0;
 int verbose_flag = 0;
-int statistics_flag = 0;
+int error_verbose_flag = 0;
 int yacc_flag = 0;     /* for -y */
 int graph_flag = 0;
+int trace_flag = 0;
 
 const char *skeleton = NULL;
+const char *include = NULL;
 
 extern char *program_name;
 
@@ -164,10 +166,18 @@ getargs (int argc, char *argv[])
        verbose_flag = 1;
        break;
 
+      case 'e':
+       error_verbose_flag = 1;
+       break;
+
       case 'S':
        skeleton = optarg;
        break;
 
+      case 'I':
+       include = optarg;
+       break;
+
       case 'd':
        /* Here, the -d and --defines options are differentiated.  */
        defines_flag = 1;