* Deal with the new flex 2.5.31 as follows:
[filters.git] / cockney.l
index e6c0bdae91e4d1a25cdf7b96c064453dab24ce77..823af7e98d609d3067590a7c72799d1ce5580c04 100644 (file)
--- a/cockney.l
+++ b/cockney.l
@@ -94,12 +94,22 @@ eos()
     if (yytext[yyleng-1] == '.')
        dintI();
     else
-       unput(yytext[yyleng-1]);
+       yyunput(yytext[yyleng-1], yytext);
 }
 
 plastc()
 {
-    unput(yytext[yyleng-1]);
+    yyunput(yytext[yyleng-1], yytext);
+}
+
+main()
+{
+        yylex();
+}
+
+int yywrap()
+{
+       return 1;
 }
 
 caseify(c)
This page took 0.009163 seconds and 4 git commands to generate.