From 79f4b0d33cbb490f957d081bd7c8bc97bd4c689c Mon Sep 17 00:00:00 2001 From: sanine Date: Tue, 7 Feb 2023 17:52:17 -0600 Subject: fix parser using REJECT so that example works --- src/xml/kalmia.lex.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/xml/kalmia.lex.h') 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 */ -- cgit v1.2.1