From 1565a740dbeb8284c6ad09cf712df6e6b3c8ffe7 Mon Sep 17 00:00:00 2001 From: ggujjula <43194746+ggujjula@users.noreply.github.com> Date: Wed, 29 Dec 2021 16:23:14 -0600 Subject: Add command-line options --noinput and --noyyinput --- src/main.c | 3 +++ src/options.c | 4 ++++ src/options.h | 1 + 3 files changed, 8 insertions(+) diff --git a/src/main.c b/src/main.c index 3b996b4..6f085b0 100644 --- a/src/main.c +++ b/src/main.c @@ -1077,6 +1077,9 @@ void flexinit (int argc, char **argv) case OPT_NO_YY_TOP_STATE: ctrl.no_yy_top_state = true; break; + case OPT_NO_YYINPUT: + ctrl.no_yyinput = true; + break; case OPT_NO_YYUNPUT: ctrl.no_yyunput = true; break; diff --git a/src/options.c b/src/options.c index 56c7f42..d5c2c1d 100644 --- a/src/options.c +++ b/src/options.c @@ -235,6 +235,10 @@ optspec_t flexopts[] = { {"--yywrap", OPT_YYWRAP, 0} , + {"--noinput", OPT_NO_YYINPUT, 0} + , + {"--noyyinput", OPT_NO_YYINPUT, 0} + , {"--nounput", OPT_NO_YYUNPUT, 0} , {"--noyyunput", OPT_NO_YYUNPUT, 0} diff --git a/src/options.h b/src/options.h index 0b905d5..4ec6936 100644 --- a/src/options.h +++ b/src/options.h @@ -79,6 +79,7 @@ enum flexopt_flag_t { OPT_NO_REENTRANT, OPT_NO_REJECT, OPT_NO_STDINIT, + OPT_NO_YYINPUT, OPT_NO_YYUNPUT, OPT_NO_WARN, OPT_NO_YYGET_EXTRA, -- cgit v1.2.1 From c947396cda32f6f1f430fb3b128b7ecf0446498b Mon Sep 17 00:00:00 2001 From: ggujjula <43194746+ggujjula@users.noreply.github.com> Date: Wed, 29 Dec 2021 16:31:18 -0600 Subject: Replace mention of input() in documentation with yyinput() --- doc/flex.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/flex.texi b/doc/flex.texi index 0302e5d..3d350ba 100755 --- a/doc/flex.texi +++ b/doc/flex.texi @@ -2610,7 +2610,7 @@ corresponding routine not appearing in the generated scanner: @example @verbatim -input, yyunput +yyinput, yyunput yy_push_state, yy_pop_state, yy_top_state yy_scan_buffer, yy_scan_bytes, yy_scan_string -- cgit v1.2.1 From 1677eff252854d10b29dd50d7fc520f763340f5e Mon Sep 17 00:00:00 2001 From: ggujjula <43194746+ggujjula@users.noreply.github.com> Date: Wed, 29 Dec 2021 16:47:43 -0600 Subject: Add command-line options --noyyget_debug and --noyyset_debug --- src/main.c | 6 ++++++ src/options.c | 4 ++++ src/options.h | 2 ++ 3 files changed, 12 insertions(+) diff --git a/src/main.c b/src/main.c index 6f085b0..c4e6849 100644 --- a/src/main.c +++ b/src/main.c @@ -1140,6 +1140,12 @@ void flexinit (int argc, char **argv) case OPT_NO_YYSET_LLOC: ctrl.no_yyset_lloc = true; break; + case OPT_NO_YYGET_DEBUG: + ctrl.no_get_debug = true; + break; + case OPT_NO_YYSET_DEBUG: + ctrl.no_set_debug = true; + break; case OPT_HEX: env.trace_hex = true; diff --git a/src/options.c b/src/options.c index d5c2c1d..8b7fd8a 100644 --- a/src/options.c +++ b/src/options.c @@ -287,6 +287,10 @@ optspec_t flexopts[] = { , {"--noyyset_lloc", OPT_NO_YYSET_LLOC, 0} , + {"--noyyget_debug", OPT_NO_YYGET_DEBUG, 0} + , + {"--noyyset_debug", OPT_NO_YYSET_DEBUG, 0} + , {"--unsafe-no-m4-sect3-escape", OPT_NO_SECT3_ESCAPE, 0} , {0, 0, 0} /* required final NULL entry. */ diff --git a/src/options.h b/src/options.h index 4ec6936..a2d3786 100644 --- a/src/options.h +++ b/src/options.h @@ -90,6 +90,7 @@ enum flexopt_flag_t { OPT_NO_YYGET_LLOC, OPT_NO_YYGET_LVAL, OPT_NO_YYGET_OUT, + OPT_NO_YYGET_DEBUG, OPT_NO_YYGET_TEXT, OPT_NO_YYLINENO, OPT_NO_YYMORE, @@ -100,6 +101,7 @@ enum flexopt_flag_t { OPT_NO_YYSET_LLOC, OPT_NO_YYSET_LVAL, OPT_NO_YYSET_OUT, + OPT_NO_YYSET_DEBUG, OPT_NO_YYWRAP, OPT_NO_YY_POP_STATE, OPT_NO_YY_PUSH_STATE, -- cgit v1.2.1