* Deal with the new flex 2.5.31 as follows:
[filters.git] / jive.l
diff --git a/jive.l b/jive.l
index dcb99240b2bfcc52d71eab532eeb189e6b93c10e..750b3cdb9a5921db2c605cf0f0313a2d3383718a 100644 (file)
--- a/jive.l
+++ b/jive.l
@@ -7,6 +7,7 @@
  *
  *     Reproduction permitted so long as this notice is retained.
  */
+
 %}
 %e 1700
 %p 4000
@@ -196,7 +197,7 @@ cally                               printf("c'l");
 %%
 plastc()
 {
-       unput(yytext[yyleng-1]);
+       yyunput(yytext[yyleng-1], yytext);
 }
 
 caseify(c)
@@ -242,6 +243,16 @@ expletive()
                }
 }
 
+main()
+{
+       yylex();
+}
+
+int yywrap()
+{
+       return 1;
+}
+
 /*
  * Bugs:
  *
This page took 0.009682 seconds and 4 git commands to generate.