summaryrefslogtreecommitdiff
path: root/options.c
diff options
context:
space:
mode:
authorwlestes <wlestes>2001-10-22 14:37:43 +0000
committerwlestes <wlestes>2001-10-22 14:37:43 +0000
commit93491e45f4e2a7fbe0b1ebdf99132c26f62e64c9 (patch)
tree12b97bd1b491528b55f5a104e7cd212968a8a1cd /options.c
parentdbcfaa2e99c52200069a685bb16140f7c8e8d005 (diff)
downloadflex-93491e45f4e2a7fbe0b1ebdf99132c26f62e64c9.tar.gz
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. */