summaryrefslogtreecommitdiff
path: root/options.c
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2001-10-22 14:37:43 +0000
committerWill Estes <wlestes@users.sourceforge.net>2001-10-22 14:37:43 +0000
commite9a3e26d6b589ae1e16dbba0adddac392118f59a (patch)
tree4a0eb1877db3afd659bd99d20e555f9674eccdad /options.c
parent3cb447bf293324f50a3f3556d88ccbbddce5f40a (diff)
the last checkin was broken; millaway fixed it
Diffstat (limited to 'options.c')
-rw-r--r--options.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/options.c b/options.c
index 26a9039..d289010 100644
--- a/options.c
+++ b/options.c
@@ -39,12 +39,12 @@ optspec_t flexopts[] = {
{"--main", OPT_MAIN,0}, /* use built-in main() function. */
{"--meta-ecs", OPT_META_ECS,0},/* Construct meta-equivalence classes. */
{"--never-interactive", OPT_NEVER_INTERACTIVE,0},
-{"--nodefault", OPT_NODEFAULT,0},/* Suppress default rule to ECHO unmatched text. */
-{"-s", OPT_NODEFAULT,0},
-{"--noline", OPT_NOLINE,0},/* Suppress #line directives in scanner. */
-{"-L", OPT_NOLINE,0},/* Suppress #line directives in scanner. */
-{"--nowarn", OPT_NOWARN,0},/* Suppress warning messages. */
-{"-w", OPT_NOWARN,0},
+{"--nodefault", OPT_NO_DEFAULT,0},/* Suppress default rule to ECHO unmatched text. */
+{"-s", OPT_NO_DEFAULT,0},
+{"--noline", OPT_NO_LINE,0},/* Suppress #line directives in scanner. */
+{"-L", OPT_NO_LINE,0},/* Suppress #line directives in scanner. */
+{"--nowarn", OPT_NO_WARN,0},/* Suppress warning messages. */
+{"-w", OPT_NO_WARN,0},
{"--outfile=FILE", OPT_OUTFILE,0},/* Write to FILE (default is lex.yy.c) */
{"-o FILE", OPT_OUTFILE,0},
{"--perf-report", OPT_PERF_REPORT,0},/* Generate performance report to stderr. */