diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-10-29 20:46:37 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-06 01:13:46 -0700 |
commit | 17e00314cad49c11dda5b621497c7010537844ea (patch) | |
tree | bdd4d1c6b20c3f995d4b3d105de4cff4e870585f /parser.h | |
parent | f1c31c527b5fd97a0d6c39c815e40a37674881ca (diff) | |
download | perl-17e00314cad49c11dda5b621497c7010537844ea.tar.gz |
parser.h: Rearrange constants
Put LEX_IGNORE_UTF8_HINTS near the only other constant passed
to lex_start
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 { |