summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-11-26 15:08:34 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-11-26 15:08:34 +0000
commite0636c8ad09f2152137cf77f2e64528218b566c1 (patch)
tree74c247960bf1ddd68aef99927c459aa73e425eec /flexdef.h
parent7438e63861cb1317977fc1f6fea29589a3276539 (diff)
-l lex compatibility flag
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 b8492d7..149f6e7 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -309,6 +309,7 @@ extern struct hash_entry *ccltab[CCL_HASH_SIZE];
* spprdflt - if true (-s), suppress the default rule
* 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
* useecs - if true (-Ce flag), use equivalence classes
* fulltbl - if true (-Cf flag), don't compress the DFA state table
* usemecs - if true (-Cm flag), use meta-equivalence classes
@@ -340,7 +341,7 @@ extern struct hash_entry *ccltab[CCL_HASH_SIZE];
*/
extern int printstats, syntaxerror, eofseen, ddebug, trace, nowarn, spprdflt;
-extern int interactive, caseins, useecs, fulltbl, usemecs;
+extern int interactive, caseins, lex_compat, useecs, fulltbl, usemecs;
extern int fullspd, gen_line_dirs, performance_report, backing_up_report;
extern int C_plus_plus, long_align, use_read, yytext_is_array, csize;
extern int yymore_used, reject, real_reject, continued_action;