summary refs log tree commit diff
path: root/bin/shotty.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/shotty.l
parentAdd Sorrowland (diff)
downloadsrc-e6513fe186c2e293eb07ef20af53d73e39e8bde0.tar.gz
src-e6513fe186c2e293eb07ef20af53d73e39e8bde0.zip
Use noinput, nounput options in lex files
Diffstat (limited to 'bin/shotty.l')
-rw-r--r--bin/shotty.l4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/shotty.l b/bin/shotty.l
index c676d15b..ff78d241 100644
--- a/bin/shotty.l
+++ b/bin/shotty.l
@@ -14,7 +14,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-%option noyywrap
+%option noinput nounput noyywrap
 
 %{
 
@@ -101,8 +101,6 @@ ESC \x1B
 %x OSC
 
 %%
-	(void)input;
-	(void)yyunput;
 	pn = 0;
 
 {ESC}"["	BEGIN(CSI);