From e6513fe186c2e293eb07ef20af53d73e39e8bde0 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 28 Nov 2021 17:58:54 -0500 Subject: Use noinput, nounput options in lex files --- bin/dehtml.l | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'bin/dehtml.l') diff --git a/bin/dehtml.l b/bin/dehtml.l index 51e7f4f7..3f2de592 100644 --- a/bin/dehtml.l +++ b/bin/dehtml.l @@ -14,7 +14,7 @@ * along with this program. If not, see . */ -%option noyywrap +%option noinput nounput noyywrap %{ enum Token { @@ -101,8 +101,6 @@ static bool isTag(const char *tag) { } int main(int argc, char *argv[]) { - (void)input; - (void)yyunput; setlocale(LC_CTYPE, ""); bool collapse = 0; -- cgit 1.4.1