From cee28e0aa664da4eb697ede8b27b9e321a117c9b Mon Sep 17 00:00:00 2001 From: John Millaway Date: Fri, 31 Jan 2003 22:30:03 +0000 Subject: [PATCH] Flex now warns if always-interactive is specified with fast or full. --- scan.l | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scan.l b/scan.l index 7d5530f..079fafb 100644 --- a/scan.l +++ b/scan.l @@ -255,6 +255,7 @@ LEXOPT [aceknopr] align long_align = option_sense; always-interactive { action_define( "YY_ALWAYS_INTERACTIVE", option_sense ); + interactive = option_sense; } array yytext_is_array = option_sense; backup backing_up_report = option_sense; @@ -287,6 +288,7 @@ LEXOPT [aceknopr] meta-ecs usemecs = option_sense; never-interactive { action_define( "YY_NEVER_INTERACTIVE", option_sense ); + interactive = !option_sense; } perf-report performance_report += option_sense ? 1 : -1; pointer yytext_is_array = ! option_sense; -- 2.40.0