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
commit9541097134edf58b0f3401506a777f95da0c616e (patch)
tree97a4579b864f9dae8db29a3c06de4d752c0c2543 /bin/make.l
parentAdd Sorrowland (diff)
downloadsrc-9541097134edf58b0f3401506a777f95da0c616e.tar.gz
src-9541097134edf58b0f3401506a777f95da0c616e.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 6d0c73f9..6296716d 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 };