summary refs log tree commit diff
path: root/bin/dehtml.l
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dehtml.l')
-rw-r--r--bin/dehtml.l4
1 files changed, 1 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>.
  */
 
-%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;