summary refs log tree commit diff
path: root/bin/make.l
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-11-28 17:58:54 -0500
committerJune McEnroe <june@causal.agency>2021-11-28 17:58:54 -0500
commite6513fe186c2e293eb07ef20af53d73e39e8bde0 (patch)
treec7a744596d030f198434c6dfdc7a0491048c1f96 /bin/make.l
parentAdd Sorrowland (diff)
downloadsrc-e6513fe186c2e293eb07ef20af53d73e39e8bde0.tar.gz
src-e6513fe186c2e293eb07ef20af53d73e39e8bde0.zip
Use noinput, nounput options in lex files
Diffstat (limited to 'bin/make.l')
-rw-r--r--bin/make.l7
1 files changed, 1 insertions, 6 deletions
diff --git a/bin/make.l b/bin/make.l
index 027fefa3..ae1be2f5 100644
--- a/bin/make.l
+++ b/bin/make.l
@@ -15,7 +15,7 @@
  */
 
 %option prefix="make"
-%option noyywrap
+%option noinput nounput noyywrap
 
 %{
 #include "hilex.h"
@@ -122,11 +122,6 @@ operator [:!]|::
 
 .|\n { return Normal; }
 
-%{
-	(void)yyunput;
-	(void)input;
-%}
-
 %%
 
 const struct Lexer LexMake = { yylex, &yyin, &yytext };