diff options
author | sanine <sanine.not@pm.me> | 2023-02-07 17:52:17 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-02-07 17:52:17 -0600 |
commit | 79f4b0d33cbb490f957d081bd7c8bc97bd4c689c (patch) | |
tree | be04a0dd98ca341a46bd65cf400a20e1c66f3563 /src/xml/kalmia.lex.h | |
parent | f547164540f4ac7f8436fef8e981b1fef503f08c (diff) |
fix parser using REJECT so that example works
Diffstat (limited to 'src/xml/kalmia.lex.h')
-rw-r--r-- | src/xml/kalmia.lex.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/xml/kalmia.lex.h b/src/xml/kalmia.lex.h index ad35689..6e69df6 100644 --- a/src/xml/kalmia.lex.h +++ b/src/xml/kalmia.lex.h @@ -456,7 +456,8 @@ void yyfree ( void * , yyscan_t yyscanner ); #ifdef YY_HEADER_EXPORT_START_CONDITIONS #define INITIAL 0 #define STRING 1 -#define TAG 2 +#define TAG_START 2 +#define TAG 3 #endif @@ -728,8 +729,8 @@ extern int yylex \ #undef yyTABLES_NAME #endif -#line 85 "kalmia.l" +#line 86 "kalmia.l" -#line 733 "kalmia.lex.h" +#line 734 "kalmia.lex.h" #undef kalmiaIN_HEADER #endif /* kalmiaHEADER_H */ |