]> iEval git - filters.git/blobdiff - jive.l
Fix d/copyright (according to DEP-5)
[filters.git] / jive.l
diff --git a/jive.l b/jive.l
index dcb99240b2bfcc52d71eab532eeb189e6b93c10e..f8a1386d11506e58ae030bd40ea34684754f406a 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
 %o 1500
 BW [ \t\(]
 EW [ \t.,;!\?$\)]
+%option noyywrap
 %%
+
+%{
+    void plastc();
+%}
+
 @[Bb]egin(.*)          |
 ".so ".*$                      printf("%s", yytext);
 {BW}send                       printf("%ct'row",yytext[0]);
@@ -194,9 +201,10 @@ against                            printf("agin'");
 meta                           printf("meta-fuckin'");
 cally                          printf("c'l");
 %%
-plastc()
+
+void plastc()
 {
-       unput(yytext[yyleng-1]);
+    unput(yytext[yyleng-1]);
 }
 
 caseify(c)
This page took 0.018256 seconds and 4 git commands to generate.