summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorwlestes <wlestes>2002-06-19 13:26:43 +0000
committerwlestes <wlestes>2002-06-19 13:26:43 +0000
commitfe1f0bacbd35cd11f491f85a5c0f54c88b470bea (patch)
tree863df7e3bb417fce35eda41356ca9370f7ceb781 /flexdef.h
parent161cd091bd115813a91adcef369b459f8fca83d2 (diff)
downloadflex-fe1f0bacbd35cd11f491f85a5c0f54c88b470bea.tar.gz
address typos in NEWS; add --posix option for ERE parsing the way posix wants it; update the TODO file
Diffstat (limited to 'flexdef.h')
-rw-r--r--flexdef.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/flexdef.h b/flexdef.h
index 83843a1..93f7e10 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -333,6 +333,7 @@
* interactive - if true (-I), generate an interactive scanner
* caseins - if true (-i), generate a case-insensitive scanner
* lex_compat - if true (-l), maximize compatibility with AT&T lex
+ * posix_compat - if true (-X), maximize compatibility with POSIX lex
* do_yylineno - if true, generate code to maintain yylineno
* useecs - if true (-Ce flag), use equivalence classes
* fulltbl - if true (-Cf flag), don't compress the DFA state table
@@ -370,7 +371,7 @@
*/
extern int printstats, syntaxerror, eofseen, ddebug, trace, nowarn, spprdflt;
-extern int interactive, caseins, lex_compat, do_yylineno;
+extern int interactive, caseins, lex_compat, posix_compat, do_yylineno;
extern int useecs, fulltbl, usemecs, fullspd;
extern int gen_line_dirs, performance_report, backing_up_report;
extern int reentrant, reentrant_bison_pure;