From 17e00314cad49c11dda5b621497c7010537844ea Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sat, 29 Oct 2011 20:46:37 -0700 Subject: [PATCH] parser.h: Rearrange constants Put LEX_IGNORE_UTF8_HINTS near the only other constant passed to lex_start --- parser.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parser.h b/parser.h index bbf3bf3..c19bc28 100644 --- a/parser.h +++ b/parser.h @@ -113,13 +113,14 @@ typedef struct yy_parser { /* flags for lexer API */ #define LEX_STUFF_UTF8 0x00000001 #define LEX_KEEP_PREVIOUS 0x00000002 + #ifdef PERL_CORE # define LEX_START_SAME_FILTER 0x00000001 #endif +#define LEX_IGNORE_UTF8_HINTS 0x00000002 /* flags for parser API */ #define PARSE_OPTIONAL 0x00000001 -#define LEX_IGNORE_UTF8_HINTS 0x00000002 /* values for lex_fakeeof */ enum { -- 1.8.3.1