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
commit9541097134edf58b0f3401506a777f95da0c616e (patch)
tree97a4579b864f9dae8db29a3c06de4d752c0c2543 /bin/shotty.l
parentAdd Sorrowland (diff)
downloadsrc-9541097134edf58b0f3401506a777f95da0c616e.tar.gz
src-9541097134edf58b0f3401506a777f95da0c616e.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 577696bb..7496e75d 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);