summaryrefslogtreecommitdiff
path: root/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options.c')
-rw-r--r--options.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/options.c b/options.c
index bd0af32..e41da0b 100644
--- a/options.c
+++ b/options.c
@@ -39,11 +39,11 @@ 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},
-{"--no-default", OPT_NODEFAULT,0},/* Suppress default rule to ECHO unmatched text. */
+{"--nodefault", OPT_NODEFAULT,0},/* Suppress default rule to ECHO unmatched text. */
{"-s", OPT_NODEFAULT,0},
-{"--no-line", OPT_NOLINE,0},/* Suppress #line directives in scanner. */
+{"--noline", OPT_NOLINE,0},/* Suppress #line directives in scanner. */
{"-L", OPT_NOLINE,0},/* Suppress #line directives in scanner. */
-{"--no-warn", OPT_NOWARN,0},/* Suppress warning messages. */
+{"--nowarn", OPT_NOWARN,0},/* Suppress warning messages. */
{"-w", OPT_NOWARN,0},
{"--outfile=FILE", OPT_OUTFILE,0},/* Write to FILE (default is lex.yy.c) */
{"-o FILE", OPT_OUTFILE,0},
@@ -52,7 +52,7 @@ optspec_t flexopts[] = {
{"--pointer", OPT_POINTER,0},
{"--prefix=PREFIX", OPT_PREFIX,0},/* Use PREFIX (default is yy) */
{"-P PREFIX", OPT_PREFIX,0},
-{"-D", OPT_PREPROCDEFINE,0},/* Define a preprocessor symbol. */
+{"-Dmacro", OPT_PREPROCDEFINE,0},/* Define a preprocessor symbol. */
{"--read", OPT_READ,0},/* Use read(2) instead of stdio. */
{"--reentrant", OPT_REENTRANT,0},/* Generate a reentrant C scanner. */
{"-R[b]", OPT_REENTRANT,0},