This commit is contained in:
Akim Demaille
2009-09-09 15:37:03 +02:00
parent f71db70bce
commit dd875058b2
3 changed files with 503 additions and 470 deletions

View File

@@ -1,3 +1,7 @@
2009-09-09 Akim Demaille <demaille@gostai.com>
Regen.
2009-09-09 Akim Demaille <demaille@gostai.com> 2009-09-09 Akim Demaille <demaille@gostai.com>
style changes. style changes.

File diff suppressed because it is too large Load Diff

View File

@@ -38,6 +38,7 @@
# define PARAM_TYPE # define PARAM_TYPE
typedef enum typedef enum
{ {
param_none = 0,
param_lex = 1 << 0, param_lex = 1 << 0,
param_parse = 1 << 1, param_parse = 1 << 1,
param_both = param_lex | param_parse param_both = param_lex | param_parse
@@ -46,7 +47,7 @@
/* Line 1608 of yacc.c */ /* Line 1608 of yacc.c */
#line 50 "src/parse-gram.h" #line 51 "src/parse-gram.h"
/* Tokens. */ /* Tokens. */
#ifndef YYTOKENTYPE #ifndef YYTOKENTYPE
@@ -186,13 +187,13 @@ typedef union YYSTYPE
unsigned char character; unsigned char character;
/* Line 1608 of yacc.c */ /* Line 1608 of yacc.c */
#line 223 "src/parse-gram.y" #line 225 "src/parse-gram.y"
param_type param; param_type param;
/* Line 1608 of yacc.c */ /* Line 1608 of yacc.c */
#line 196 "src/parse-gram.h" #line 197 "src/parse-gram.h"
} YYSTYPE; } YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define yystype YYSTYPE /* obsolescent; will be withdrawn */